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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT2/segments?format=api&page=61",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT2/segments?format=api&page=59",
    "results_count": 81402,
    "results_per_page": 20,
    "num_pages": 4071,
    "page_number": 60,
    "results": [
        {
            "start": 817714954,
            "stop": 817715857
        },
        {
            "start": 817715864,
            "stop": 817715876
        },
        {
            "start": 817715879,
            "stop": 817718545
        },
        {
            "start": 817718550,
            "stop": 817718678
        },
        {
            "start": 817718684,
            "stop": 817718899
        },
        {
            "start": 817718902,
            "stop": 817719000
        },
        {
            "start": 817719003,
            "stop": 817719017
        },
        {
            "start": 817719022,
            "stop": 817719025
        },
        {
            "start": 817719028,
            "stop": 817719036
        },
        {
            "start": 817719039,
            "stop": 817719042
        },
        {
            "start": 817719045,
            "stop": 817719049
        },
        {
            "start": 817719061,
            "stop": 817719062
        },
        {
            "start": 817720684,
            "stop": 817720849
        },
        {
            "start": 817720852,
            "stop": 817721020
        },
        {
            "start": 817721023,
            "stop": 817721039
        },
        {
            "start": 817721042,
            "stop": 817721050
        },
        {
            "start": 817721053,
            "stop": 817721088
        },
        {
            "start": 817721091,
            "stop": 817721120
        },
        {
            "start": 817721123,
            "stop": 817721872
        },
        {
            "start": 817721875,
            "stop": 817722577
        }
    ]
}