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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=128",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=126",
    "results_count": 143782,
    "results_per_page": 20,
    "num_pages": 7190,
    "page_number": 127,
    "results": [
        {
            "start": 817875540,
            "stop": 817875640
        },
        {
            "start": 817875643,
            "stop": 817875652
        },
        {
            "start": 817875656,
            "stop": 817875847
        },
        {
            "start": 817875856,
            "stop": 817875873
        },
        {
            "start": 817875877,
            "stop": 817875894
        },
        {
            "start": 817875897,
            "stop": 817875914
        },
        {
            "start": 817875917,
            "stop": 817875940
        },
        {
            "start": 817875943,
            "stop": 817875999
        },
        {
            "start": 817876002,
            "stop": 817876005
        },
        {
            "start": 817876009,
            "stop": 817876055
        },
        {
            "start": 817876060,
            "stop": 817876220
        },
        {
            "start": 817876223,
            "stop": 817876262
        },
        {
            "start": 817876266,
            "stop": 817876275
        },
        {
            "start": 817876278,
            "stop": 817876281
        },
        {
            "start": 817876285,
            "stop": 817876316
        },
        {
            "start": 817876319,
            "stop": 817876342
        },
        {
            "start": 817876345,
            "stop": 817876367
        },
        {
            "start": 817876371,
            "stop": 817876414
        },
        {
            "start": 817876417,
            "stop": 817876432
        },
        {
            "start": 817876435,
            "stop": 817876589
        }
    ]
}