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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2005",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2003",
    "results_count": 44464,
    "results_per_page": 20,
    "num_pages": 2224,
    "page_number": 2004,
    "results": [
        {
            "start": 857706678,
            "stop": 857707166
        },
        {
            "start": 857707210,
            "stop": 857707240
        },
        {
            "start": 857707677,
            "stop": 857712570
        },
        {
            "start": 857712573,
            "stop": 857713962
        },
        {
            "start": 857713965,
            "stop": 857714312
        },
        {
            "start": 857714315,
            "stop": 857715433
        },
        {
            "start": 857715733,
            "stop": 857716250
        },
        {
            "start": 857716253,
            "stop": 857716563
        },
        {
            "start": 857716566,
            "stop": 857718192
        },
        {
            "start": 857718293,
            "stop": 857725470
        },
        {
            "start": 857725590,
            "stop": 857725622
        },
        {
            "start": 857725624,
            "stop": 857732094
        },
        {
            "start": 857732096,
            "stop": 857732430
        },
        {
            "start": 857732490,
            "stop": 857732581
        },
        {
            "start": 857732583,
            "stop": 857732614
        },
        {
            "start": 857732616,
            "stop": 857732697
        },
        {
            "start": 857732698,
            "stop": 857732708
        },
        {
            "start": 857732710,
            "stop": 857732715
        },
        {
            "start": 857732718,
            "stop": 857732721
        },
        {
            "start": 857732722,
            "stop": 857732871
        }
    ]
}