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=8300
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=8301",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=8299",
    "results_count": 168343,
    "results_per_page": 20,
    "num_pages": 8418,
    "page_number": 8300,
    "results": [
        {
            "start": 874114314,
            "stop": 874114707
        },
        {
            "start": 874114726,
            "stop": 874115102
        },
        {
            "start": 874115121,
            "stop": 874115876
        },
        {
            "start": 874115895,
            "stop": 874115944
        },
        {
            "start": 874115963,
            "stop": 874117986
        },
        {
            "start": 874118005,
            "stop": 874118578
        },
        {
            "start": 874118714,
            "stop": 874118810
        },
        {
            "start": 874119616,
            "stop": 874119973
        },
        {
            "start": 874119990,
            "stop": 874121407
        },
        {
            "start": 874121426,
            "stop": 874122144
        },
        {
            "start": 874122161,
            "stop": 874122813
        },
        {
            "start": 874122832,
            "stop": 874122857
        },
        {
            "start": 874122877,
            "stop": 874123329
        },
        {
            "start": 874123346,
            "stop": 874124310
        },
        {
            "start": 874124329,
            "stop": 874124366
        },
        {
            "start": 874124698,
            "stop": 874124819
        },
        {
            "start": 874124838,
            "stop": 874125005
        },
        {
            "start": 874125024,
            "stop": 874125080
        },
        {
            "start": 874125099,
            "stop": 874125296
        },
        {
            "start": 874125315,
            "stop": 874125819
        }
    ]
}