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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCHIGH_CAT4/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCHIGH_CAT4/segments?format=api&page=122",
    "results_count": 98866,
    "results_per_page": 20,
    "num_pages": 4944,
    "page_number": 123,
    "results": [
        {
            "start": 817572212,
            "stop": 817572243
        },
        {
            "start": 817572252,
            "stop": 817572267
        },
        {
            "start": 817572272,
            "stop": 817573092
        },
        {
            "start": 817573095,
            "stop": 817573826
        },
        {
            "start": 817573829,
            "stop": 817574642
        },
        {
            "start": 817574645,
            "stop": 817574850
        },
        {
            "start": 817574851,
            "stop": 817574999
        },
        {
            "start": 817575119,
            "stop": 817575136
        },
        {
            "start": 817575316,
            "stop": 817576412
        },
        {
            "start": 817576532,
            "stop": 817576743
        },
        {
            "start": 817576746,
            "stop": 817576872
        },
        {
            "start": 817576875,
            "stop": 817577549
        },
        {
            "start": 817577669,
            "stop": 817577746
        },
        {
            "start": 817577749,
            "stop": 817578976
        },
        {
            "start": 817579008,
            "stop": 817579203
        },
        {
            "start": 817579206,
            "stop": 817579674
        },
        {
            "start": 817579677,
            "stop": 817580100
        },
        {
            "start": 817580220,
            "stop": 817580298
        },
        {
            "start": 817580302,
            "stop": 817580459
        },
        {
            "start": 817580462,
            "stop": 817581379
        }
    ]
}