Return the segments for a given timeline for a run.

Query parameters:

  • start=<int>: Initial GPS time of the desired GPS interval.
  • stop=<int>: Final GPS time of the desired GPS interval.
  • compact: Return a list of segment [start, stop] list.
  • pagesize=<int>: Number of results to return per page.
GET /api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10051
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10052",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10050",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 10051,
    "results": [
        {
            "start": 872805611,
            "stop": 872808062
        },
        {
            "start": 872808488,
            "stop": 872810057
        },
        {
            "start": 872810483,
            "stop": 872810765
        },
        {
            "start": 872811387,
            "stop": 872811870
        },
        {
            "start": 872812710,
            "stop": 872815495
        },
        {
            "start": 872815683,
            "stop": 872816059
        },
        {
            "start": 872816763,
            "stop": 872816861
        },
        {
            "start": 872817000,
            "stop": 872817982
        },
        {
            "start": 872818018,
            "stop": 872818320
        },
        {
            "start": 872818800,
            "stop": 872818860
        },
        {
            "start": 872818980,
            "stop": 872819454
        },
        {
            "start": 872819495,
            "stop": 872819577
        },
        {
            "start": 872820544,
            "stop": 872821516
        },
        {
            "start": 872821559,
            "stop": 872822428
        },
        {
            "start": 872822630,
            "stop": 872822787
        },
        {
            "start": 872822804,
            "stop": 872822935
        },
        {
            "start": 872822952,
            "stop": 872824740
        },
        {
            "start": 872825460,
            "stop": 872825520
        },
        {
            "start": 872825640,
            "stop": 872825996
        },
        {
            "start": 872826013,
            "stop": 872827560
        }
    ]
}