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=1999
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=2000",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=1998",
    "results_count": 44464,
    "results_per_page": 20,
    "num_pages": 2224,
    "page_number": 1999,
    "results": [
        {
            "start": 857432998,
            "stop": 857433002
        },
        {
            "start": 857433008,
            "stop": 857433189
        },
        {
            "start": 857433192,
            "stop": 857433480
        },
        {
            "start": 857433771,
            "stop": 857434618
        },
        {
            "start": 857434621,
            "stop": 857434683
        },
        {
            "start": 857434686,
            "stop": 857434699
        },
        {
            "start": 857434702,
            "stop": 857434983
        },
        {
            "start": 857435468,
            "stop": 857436207
        },
        {
            "start": 857436507,
            "stop": 857442471
        },
        {
            "start": 857442487,
            "stop": 857443299
        },
        {
            "start": 857443302,
            "stop": 857445325
        },
        {
            "start": 857447941,
            "stop": 857448534
        },
        {
            "start": 857448537,
            "stop": 857452023
        },
        {
            "start": 857452026,
            "stop": 857452978
        },
        {
            "start": 857452981,
            "stop": 857454326
        },
        {
            "start": 857454329,
            "stop": 857456720
        },
        {
            "start": 857456723,
            "stop": 857461665
        },
        {
            "start": 857461965,
            "stop": 857477592
        },
        {
            "start": 857477949,
            "stop": 857486444
        },
        {
            "start": 857486446,
            "stop": 857490735
        }
    ]
}