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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=26",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=24",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 25,
    "results": [
        {
            "start": 818888966,
            "stop": 818893967
        },
        {
            "start": 818894582,
            "stop": 818901414
        },
        {
            "start": 818902910,
            "stop": 818911869
        },
        {
            "start": 818912156,
            "stop": 818917834
        },
        {
            "start": 818919353,
            "stop": 818945579
        },
        {
            "start": 818946980,
            "stop": 818952356
        },
        {
            "start": 818953327,
            "stop": 818954290
        },
        {
            "start": 818955978,
            "stop": 818959136
        },
        {
            "start": 818959400,
            "stop": 818959403
        },
        {
            "start": 818961755,
            "stop": 818969152
        },
        {
            "start": 818969936,
            "stop": 818971076
        },
        {
            "start": 818971385,
            "stop": 819028020
        },
        {
            "start": 819029601,
            "stop": 819030087
        },
        {
            "start": 819033769,
            "stop": 819035372
        },
        {
            "start": 819035482,
            "stop": 819036955
        },
        {
            "start": 819037255,
            "stop": 819037412
        },
        {
            "start": 819037732,
            "stop": 819037741
        },
        {
            "start": 819038049,
            "stop": 819042920
        },
        {
            "start": 819047054,
            "stop": 819048833
        },
        {
            "start": 819049472,
            "stop": 819050021
        }
    ]
}