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=2011
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=2012",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2010",
    "results_count": 44464,
    "results_per_page": 20,
    "num_pages": 2224,
    "page_number": 2011,
    "results": [
        {
            "start": 857803110,
            "stop": 857832917
        },
        {
            "start": 857832922,
            "stop": 857833216
        },
        {
            "start": 857849057,
            "stop": 857851253
        },
        {
            "start": 857861194,
            "stop": 857862269
        },
        {
            "start": 857862569,
            "stop": 857862734
        },
        {
            "start": 857862844,
            "stop": 857862982
        },
        {
            "start": 857863282,
            "stop": 857863315
        },
        {
            "start": 857863425,
            "stop": 857863516
        },
        {
            "start": 857863816,
            "stop": 857898529
        },
        {
            "start": 857898639,
            "stop": 857899148
        },
        {
            "start": 857900346,
            "stop": 857900389
        },
        {
            "start": 857900753,
            "stop": 857906117
        },
        {
            "start": 857906125,
            "stop": 857911820
        },
        {
            "start": 857911828,
            "stop": 857911837
        },
        {
            "start": 857911843,
            "stop": 857911847
        },
        {
            "start": 857911853,
            "stop": 857911905
        },
        {
            "start": 857911913,
            "stop": 857919757
        },
        {
            "start": 857919763,
            "stop": 857919810
        },
        {
            "start": 857919815,
            "stop": 857919847
        },
        {
            "start": 857919853,
            "stop": 857924676
        }
    ]
}