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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CW_CAT1/segments?format=api&page=65",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CW_CAT1/segments?format=api&page=63",
    "results_count": 3094,
    "results_per_page": 20,
    "num_pages": 155,
    "page_number": 64,
    "results": [
        {
            "start": 945131483,
            "stop": 945131599
        },
        {
            "start": 945134298,
            "stop": 945135359
        },
        {
            "start": 945149425,
            "stop": 945151130
        },
        {
            "start": 945152751,
            "stop": 945152804
        },
        {
            "start": 945154476,
            "stop": 945155199
        },
        {
            "start": 945158205,
            "stop": 945158745
        },
        {
            "start": 945213655,
            "stop": 945214051
        },
        {
            "start": 945216090,
            "stop": 945217760
        },
        {
            "start": 945218644,
            "stop": 945253356
        },
        {
            "start": 945254731,
            "stop": 945264762
        },
        {
            "start": 945273923,
            "stop": 945303862
        },
        {
            "start": 945311234,
            "stop": 945345967
        },
        {
            "start": 945347355,
            "stop": 945357237
        },
        {
            "start": 945357846,
            "stop": 945377305
        },
        {
            "start": 945378666,
            "stop": 945414425
        },
        {
            "start": 945414644,
            "stop": 945430579
        },
        {
            "start": 945432502,
            "stop": 945435511
        },
        {
            "start": 945436797,
            "stop": 945484994
        },
        {
            "start": 945485014,
            "stop": 945491063
        },
        {
            "start": 945492534,
            "stop": 945522602
        }
    ]
}