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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCHIGH_CAT3/segments?format=api&page=5000",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCHIGH_CAT3/segments?format=api&page=4998",
    "results_count": 104500,
    "results_per_page": 20,
    "num_pages": 5225,
    "page_number": 4999,
    "results": [
        {
            "start": 874466617,
            "stop": 874466794
        },
        {
            "start": 874466813,
            "stop": 874467267
        },
        {
            "start": 874467287,
            "stop": 874467569
        },
        {
            "start": 874467588,
            "stop": 874467601
        },
        {
            "start": 874467620,
            "stop": 874467981
        },
        {
            "start": 874468001,
            "stop": 874468046
        },
        {
            "start": 874468065,
            "stop": 874468088
        },
        {
            "start": 874468123,
            "stop": 874468241
        },
        {
            "start": 874468260,
            "stop": 874468434
        },
        {
            "start": 874468454,
            "stop": 874468530
        },
        {
            "start": 874468590,
            "stop": 874468604
        },
        {
            "start": 874468623,
            "stop": 874468944
        },
        {
            "start": 874468963,
            "stop": 874468997
        },
        {
            "start": 874469018,
            "stop": 874469030
        },
        {
            "start": 874469049,
            "stop": 874469205
        },
        {
            "start": 874469224,
            "stop": 874469493
        },
        {
            "start": 874469512,
            "stop": 874469618
        },
        {
            "start": 874469638,
            "stop": 874469953
        },
        {
            "start": 874469972,
            "stop": 874470081
        },
        {
            "start": 874470100,
            "stop": 874470218
        }
    ]
}