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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=8255",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=8253",
    "results_count": 168343,
    "results_per_page": 20,
    "num_pages": 8418,
    "page_number": 8254,
    "results": [
        {
            "start": 873814864,
            "stop": 873814912
        },
        {
            "start": 873814938,
            "stop": 873814948
        },
        {
            "start": 873815040,
            "stop": 873815099
        },
        {
            "start": 873815154,
            "stop": 873815172
        },
        {
            "start": 873815334,
            "stop": 873815350
        },
        {
            "start": 873815370,
            "stop": 873815457
        },
        {
            "start": 873815476,
            "stop": 873815539
        },
        {
            "start": 873815558,
            "stop": 873815644
        },
        {
            "start": 873815663,
            "stop": 873815700
        },
        {
            "start": 873815760,
            "stop": 873815845
        },
        {
            "start": 873815866,
            "stop": 873815903
        },
        {
            "start": 873815938,
            "stop": 873815955
        },
        {
            "start": 873816208,
            "stop": 873816210
        },
        {
            "start": 873816227,
            "stop": 873816300
        },
        {
            "start": 873816336,
            "stop": 873816341
        },
        {
            "start": 873816361,
            "stop": 873816402
        },
        {
            "start": 873816426,
            "stop": 873816479
        },
        {
            "start": 873816540,
            "stop": 873816629
        },
        {
            "start": 873816649,
            "stop": 873816664
        },
        {
            "start": 873816684,
            "stop": 873816769
        }
    ]
}