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

{
    "next": "https://gwosc.org/api/v2/runs/O4a/timelines/H1_BURST_CAT3/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/H1_BURST_CAT3/segments?format=api&page=122",
    "results_count": 4426,
    "results_per_page": 20,
    "num_pages": 222,
    "page_number": 123,
    "results": [
        {
            "start": 1378946306,
            "stop": 1378947540
        },
        {
            "start": 1378947545,
            "stop": 1378950420
        },
        {
            "start": 1378950425,
            "stop": 1378952792
        },
        {
            "start": 1378957866,
            "stop": 1378962381
        },
        {
            "start": 1378962386,
            "stop": 1378962949
        },
        {
            "start": 1378962952,
            "stop": 1378967807
        },
        {
            "start": 1378967810,
            "stop": 1378971785
        },
        {
            "start": 1378977233,
            "stop": 1378985443
        },
        {
            "start": 1378993266,
            "stop": 1378996938
        },
        {
            "start": 1378996943,
            "stop": 1379001639
        },
        {
            "start": 1379001644,
            "stop": 1379006417
        },
        {
            "start": 1379006421,
            "stop": 1379012872
        },
        {
            "start": 1379012877,
            "stop": 1379013925
        },
        {
            "start": 1379013930,
            "stop": 1379016650
        },
        {
            "start": 1379016655,
            "stop": 1379017226
        },
        {
            "start": 1379017231,
            "stop": 1379018199
        },
        {
            "start": 1379018204,
            "stop": 1379019603
        },
        {
            "start": 1379019608,
            "stop": 1379021157
        },
        {
            "start": 1379021162,
            "stop": 1379024573
        },
        {
            "start": 1379024578,
            "stop": 1379042508
        }
    ]
}