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=2006
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=2007",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2005",
    "results_count": 44464,
    "results_per_page": 20,
    "num_pages": 2224,
    "page_number": 2006,
    "results": [
        {
            "start": 857734035,
            "stop": 857734105
        },
        {
            "start": 857734107,
            "stop": 857734112
        },
        {
            "start": 857734114,
            "stop": 857734142
        },
        {
            "start": 857734143,
            "stop": 857734149
        },
        {
            "start": 857734152,
            "stop": 857734167
        },
        {
            "start": 857734168,
            "stop": 857734170
        },
        {
            "start": 857734231,
            "stop": 857734232
        },
        {
            "start": 857734298,
            "stop": 857734299
        },
        {
            "start": 857734300,
            "stop": 857734311
        },
        {
            "start": 857734312,
            "stop": 857734400
        },
        {
            "start": 857734402,
            "stop": 857734403
        },
        {
            "start": 857734404,
            "stop": 857734491
        },
        {
            "start": 857734492,
            "stop": 857734505
        },
        {
            "start": 857734506,
            "stop": 857734510
        },
        {
            "start": 857734511,
            "stop": 857734515
        },
        {
            "start": 857734520,
            "stop": 857734521
        },
        {
            "start": 857734523,
            "stop": 857734527
        },
        {
            "start": 857734535,
            "stop": 857734537
        },
        {
            "start": 857734543,
            "stop": 857734568
        },
        {
            "start": 857734570,
            "stop": 857734590
        }
    ]
}