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

{
    "next": "https://gwosc.org/api/v2/runs/O2/timelines/H1_CBC_CAT3/segments?format=api&page=256",
    "previous": "https://gwosc.org/api/v2/runs/O2/timelines/H1_CBC_CAT3/segments?format=api&page=254",
    "results_count": 8301,
    "results_per_page": 20,
    "num_pages": 416,
    "page_number": 255,
    "results": [
        {
            "start": 1178049868,
            "stop": 1178049869
        },
        {
            "start": 1178049870,
            "stop": 1178050225
        },
        {
            "start": 1178050228,
            "stop": 1178050235
        },
        {
            "start": 1178050236,
            "stop": 1178050241
        },
        {
            "start": 1178050242,
            "stop": 1178050252
        },
        {
            "start": 1178050253,
            "stop": 1178050309
        },
        {
            "start": 1178050310,
            "stop": 1178050313
        },
        {
            "start": 1178050314,
            "stop": 1178053217
        },
        {
            "start": 1178053219,
            "stop": 1178053937
        },
        {
            "start": 1178053938,
            "stop": 1178055466
        },
        {
            "start": 1178055468,
            "stop": 1178056523
        },
        {
            "start": 1178056525,
            "stop": 1178056760
        },
        {
            "start": 1178056763,
            "stop": 1178056838
        },
        {
            "start": 1178056839,
            "stop": 1178056840
        },
        {
            "start": 1178056842,
            "stop": 1178056871
        },
        {
            "start": 1178056873,
            "stop": 1178058540
        },
        {
            "start": 1178058542,
            "stop": 1178059636
        },
        {
            "start": 1178059637,
            "stop": 1178061541
        },
        {
            "start": 1178061542,
            "stop": 1178062521
        },
        {
            "start": 1178062523,
            "stop": 1178063302
        }
    ]
}