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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=100",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=98",
    "results_count": 298986,
    "results_per_page": 20,
    "num_pages": 14950,
    "page_number": 99,
    "results": [
        {
            "start": 932280898,
            "stop": 932283108
        },
        {
            "start": 932283127,
            "stop": 932283217
        },
        {
            "start": 932283236,
            "stop": 932283516
        },
        {
            "start": 932283521,
            "stop": 932283569
        },
        {
            "start": 932283588,
            "stop": 932283961
        },
        {
            "start": 932283966,
            "stop": 932289315
        },
        {
            "start": 932289334,
            "stop": 932290526
        },
        {
            "start": 932290531,
            "stop": 932291133
        },
        {
            "start": 932291150,
            "stop": 932291223
        },
        {
            "start": 932291243,
            "stop": 932291333
        },
        {
            "start": 932291338,
            "stop": 932291550
        },
        {
            "start": 932291555,
            "stop": 932292846
        },
        {
            "start": 932292865,
            "stop": 932294626
        },
        {
            "start": 932294645,
            "stop": 932294676
        },
        {
            "start": 932294695,
            "stop": 932296051
        },
        {
            "start": 932296074,
            "stop": 932296177
        },
        {
            "start": 932296196,
            "stop": 932296300
        },
        {
            "start": 932296305,
            "stop": 932296326
        },
        {
            "start": 932296331,
            "stop": 932296367
        },
        {
            "start": 932296372,
            "stop": 932296415
        }
    ]
}