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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/H1_CBCLOW_CAT3/segments?format=api&page=251",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/H1_CBCLOW_CAT3/segments?format=api&page=249",
    "results_count": 164670,
    "results_per_page": 20,
    "num_pages": 8234,
    "page_number": 250,
    "results": [
        {
            "start": 934307483,
            "stop": 934307676
        },
        {
            "start": 934307679,
            "stop": 934307703
        },
        {
            "start": 934309513,
            "stop": 934309847
        },
        {
            "start": 934309852,
            "stop": 934310921
        },
        {
            "start": 934310924,
            "stop": 934311026
        },
        {
            "start": 934311029,
            "stop": 934311041
        },
        {
            "start": 934311044,
            "stop": 934311056
        },
        {
            "start": 934311059,
            "stop": 934311072
        },
        {
            "start": 934311074,
            "stop": 934311101
        },
        {
            "start": 934311104,
            "stop": 934311117
        },
        {
            "start": 934311119,
            "stop": 934311132
        },
        {
            "start": 934311134,
            "stop": 934311146
        },
        {
            "start": 934311149,
            "stop": 934311161
        },
        {
            "start": 934311164,
            "stop": 934311177
        },
        {
            "start": 934311179,
            "stop": 934311191
        },
        {
            "start": 934311194,
            "stop": 934311206
        },
        {
            "start": 934311210,
            "stop": 934311222
        },
        {
            "start": 934311224,
            "stop": 934311237
        },
        {
            "start": 934311239,
            "stop": 934311251
        },
        {
            "start": 934311255,
            "stop": 934311267
        }
    ]
}