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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=8889",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=8887",
    "results_count": 182857,
    "results_per_page": 20,
    "num_pages": 9143,
    "page_number": 8888,
    "results": [
        {
            "start": 873232970,
            "stop": 873232985
        },
        {
            "start": 873233013,
            "stop": 873233017
        },
        {
            "start": 873233037,
            "stop": 873233044
        },
        {
            "start": 873233078,
            "stop": 873233534
        },
        {
            "start": 873233551,
            "stop": 873233836
        },
        {
            "start": 873233855,
            "stop": 873233861
        },
        {
            "start": 873233880,
            "stop": 873233935
        },
        {
            "start": 873233952,
            "stop": 873234000
        },
        {
            "start": 873234060,
            "stop": 873234327
        },
        {
            "start": 873234347,
            "stop": 873234723
        },
        {
            "start": 873234747,
            "stop": 873234822
        },
        {
            "start": 873234843,
            "stop": 873235084
        },
        {
            "start": 873235103,
            "stop": 873235180
        },
        {
            "start": 873235197,
            "stop": 873235244
        },
        {
            "start": 873235263,
            "stop": 873235527
        },
        {
            "start": 873235544,
            "stop": 873235897
        },
        {
            "start": 873235914,
            "stop": 873235987
        },
        {
            "start": 873236006,
            "stop": 873236089
        },
        {
            "start": 873236107,
            "stop": 873236260
        },
        {
            "start": 873236277,
            "stop": 873236746
        }
    ]
}