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=8081
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=8082",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=8080",
    "results_count": 168343,
    "results_per_page": 20,
    "num_pages": 8418,
    "page_number": 8081,
    "results": [
        {
            "start": 872423391,
            "stop": 872423407
        },
        {
            "start": 872423602,
            "stop": 872423614
        },
        {
            "start": 872423656,
            "stop": 872423663
        },
        {
            "start": 872423680,
            "stop": 872423683
        },
        {
            "start": 872460014,
            "stop": 872460155
        },
        {
            "start": 872460214,
            "stop": 872460293
        },
        {
            "start": 872460339,
            "stop": 872460547
        },
        {
            "start": 872460574,
            "stop": 872460576
        },
        {
            "start": 872460648,
            "stop": 872461111
        },
        {
            "start": 872461130,
            "stop": 872461234
        },
        {
            "start": 872461264,
            "stop": 872461267
        },
        {
            "start": 872461286,
            "stop": 872461321
        },
        {
            "start": 872461347,
            "stop": 872461408
        },
        {
            "start": 872461430,
            "stop": 872461500
        },
        {
            "start": 872462827,
            "stop": 872462920
        },
        {
            "start": 872462939,
            "stop": 872462951
        },
        {
            "start": 872462970,
            "stop": 872462977
        },
        {
            "start": 872462996,
            "stop": 872463000
        },
        {
            "start": 872463060,
            "stop": 872463171
        },
        {
            "start": 872463192,
            "stop": 872463214
        }
    ]
}