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/H2_CW_CAT1/segments?format=api&page=200
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CW_CAT1/segments?format=api&page=201",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CW_CAT1/segments?format=api&page=199",
    "results_count": 7262,
    "results_per_page": 20,
    "num_pages": 364,
    "page_number": 200,
    "results": [
        {
            "start": 843710683,
            "stop": 843710877
        },
        {
            "start": 843711516,
            "stop": 843721499
        },
        {
            "start": 843722145,
            "stop": 843722232
        },
        {
            "start": 843722858,
            "stop": 843729350
        },
        {
            "start": 843735850,
            "stop": 843742033
        },
        {
            "start": 843742825,
            "stop": 843745885
        },
        {
            "start": 843746972,
            "stop": 843765757
        },
        {
            "start": 843766576,
            "stop": 843795760
        },
        {
            "start": 843797149,
            "stop": 843801493
        },
        {
            "start": 843802176,
            "stop": 843802732
        },
        {
            "start": 843804200,
            "stop": 843833279
        },
        {
            "start": 843833937,
            "stop": 843836158
        },
        {
            "start": 843837393,
            "stop": 843837416
        },
        {
            "start": 843848221,
            "stop": 843855591
        },
        {
            "start": 843864162,
            "stop": 843887051
        },
        {
            "start": 843889175,
            "stop": 843901993
        },
        {
            "start": 843903770,
            "stop": 843906313
        },
        {
            "start": 843908454,
            "stop": 843912253
        },
        {
            "start": 843912868,
            "stop": 843921428
        },
        {
            "start": 843947018,
            "stop": 843965891
        }
    ]
}