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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10000",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=9998",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 9999,
    "results": [
        {
            "start": 872199115,
            "stop": 872199148
        },
        {
            "start": 872199182,
            "stop": 872199184
        },
        {
            "start": 872199229,
            "stop": 872199253
        },
        {
            "start": 872199270,
            "stop": 872199278
        },
        {
            "start": 872199294,
            "stop": 872199341
        },
        {
            "start": 872199358,
            "stop": 872199381
        },
        {
            "start": 872199557,
            "stop": 872199613
        },
        {
            "start": 872199629,
            "stop": 872199672
        },
        {
            "start": 872199689,
            "stop": 872199712
        },
        {
            "start": 872199730,
            "stop": 872199752
        },
        {
            "start": 872199872,
            "stop": 872199894
        },
        {
            "start": 872199911,
            "stop": 872199982
        },
        {
            "start": 872199999,
            "stop": 872200087
        },
        {
            "start": 872200104,
            "stop": 872200178
        },
        {
            "start": 872200196,
            "stop": 872200338
        },
        {
            "start": 872200355,
            "stop": 872200524
        },
        {
            "start": 872200541,
            "stop": 872200900
        },
        {
            "start": 872200944,
            "stop": 872201017
        },
        {
            "start": 872201034,
            "stop": 872201074
        },
        {
            "start": 872201210,
            "stop": 872201281
        }
    ]
}