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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCHIGH_CAT2/segments?format=api&page=11",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCHIGH_CAT2/segments?format=api&page=9",
    "results_count": 17534,
    "results_per_page": 20,
    "num_pages": 877,
    "page_number": 10,
    "results": [
        {
            "start": 815662541,
            "stop": 815662655
        },
        {
            "start": 815662658,
            "stop": 815663130
        },
        {
            "start": 815664550,
            "stop": 815671163
        },
        {
            "start": 815671166,
            "stop": 815673127
        },
        {
            "start": 815673390,
            "stop": 815673947
        },
        {
            "start": 815673948,
            "stop": 815678317
        },
        {
            "start": 815678318,
            "stop": 815682411
        },
        {
            "start": 815683820,
            "stop": 815685155
        },
        {
            "start": 815685157,
            "stop": 815686865
        },
        {
            "start": 815689734,
            "stop": 815692264
        },
        {
            "start": 815692761,
            "stop": 815693400
        },
        {
            "start": 815693403,
            "stop": 815695350
        },
        {
            "start": 815695410,
            "stop": 815696384
        },
        {
            "start": 815696387,
            "stop": 815699250
        },
        {
            "start": 815699310,
            "stop": 815700450
        },
        {
            "start": 815705428,
            "stop": 815706990
        },
        {
            "start": 815707050,
            "stop": 815708288
        },
        {
            "start": 815708291,
            "stop": 815709090
        },
        {
            "start": 815709150,
            "stop": 815712257
        },
        {
            "start": 815712260,
            "stop": 815717555
        }
    ]
}