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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT1/segments?format=api&page=366",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT1/segments?format=api&page=364",
    "results_count": 11387,
    "results_per_page": 20,
    "num_pages": 570,
    "page_number": 365,
    "results": [
        {
            "start": 848268610,
            "stop": 848270670
        },
        {
            "start": 848270671,
            "stop": 848272848
        },
        {
            "start": 848273701,
            "stop": 848275043
        },
        {
            "start": 848275045,
            "stop": 848275133
        },
        {
            "start": 848281229,
            "stop": 848303696
        },
        {
            "start": 848304536,
            "stop": 848305706
        },
        {
            "start": 848305707,
            "stop": 848306643
        },
        {
            "start": 848307462,
            "stop": 848311732
        },
        {
            "start": 848311734,
            "stop": 848316850
        },
        {
            "start": 848317907,
            "stop": 848318542
        },
        {
            "start": 848318544,
            "stop": 848323410
        },
        {
            "start": 848324256,
            "stop": 848329732
        },
        {
            "start": 848331015,
            "stop": 848331557
        },
        {
            "start": 848331559,
            "stop": 848332205
        },
        {
            "start": 848332207,
            "stop": 848332390
        },
        {
            "start": 848334251,
            "stop": 848334293
        },
        {
            "start": 848334295,
            "stop": 848334507
        },
        {
            "start": 848334774,
            "stop": 848334925
        },
        {
            "start": 848334926,
            "stop": 848337010
        },
        {
            "start": 848337012,
            "stop": 848341852
        }
    ]
}