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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=205",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=203",
    "results_count": 143782,
    "results_per_page": 20,
    "num_pages": 7190,
    "page_number": 204,
    "results": [
        {
            "start": 818206036,
            "stop": 818206038
        },
        {
            "start": 818206043,
            "stop": 818206044
        },
        {
            "start": 818206055,
            "stop": 818206058
        },
        {
            "start": 818206061,
            "stop": 818206063
        },
        {
            "start": 818206067,
            "stop": 818206073
        },
        {
            "start": 818206077,
            "stop": 818206088
        },
        {
            "start": 818206094,
            "stop": 818206105
        },
        {
            "start": 818206108,
            "stop": 818206135
        },
        {
            "start": 818206150,
            "stop": 818206163
        },
        {
            "start": 818206166,
            "stop": 818206174
        },
        {
            "start": 818206181,
            "stop": 818206203
        },
        {
            "start": 818206206,
            "stop": 818206207
        },
        {
            "start": 818206217,
            "stop": 818206221
        },
        {
            "start": 818206225,
            "stop": 818206228
        },
        {
            "start": 818206232,
            "stop": 818206235
        },
        {
            "start": 818206246,
            "stop": 818206248
        },
        {
            "start": 818206251,
            "stop": 818206252
        },
        {
            "start": 818206259,
            "stop": 818206266
        },
        {
            "start": 818206271,
            "stop": 818206278
        },
        {
            "start": 818206281,
            "stop": 818206286
        }
    ]
}