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

{
    "next": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_BURST_CAT2/segments?format=api&page=10",
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_BURST_CAT2/segments?format=api&page=8",
    "results_count": 7535,
    "results_per_page": 20,
    "num_pages": 377,
    "page_number": 9,
    "results": [
        {
            "start": 1369122461,
            "stop": 1369123766
        },
        {
            "start": 1369123768,
            "stop": 1369124933
        },
        {
            "start": 1369124935,
            "stop": 1369126132
        },
        {
            "start": 1369126136,
            "stop": 1369127270
        },
        {
            "start": 1369127272,
            "stop": 1369128167
        },
        {
            "start": 1369128169,
            "stop": 1369128439
        },
        {
            "start": 1369128441,
            "stop": 1369129632
        },
        {
            "start": 1369129634,
            "stop": 1369130825
        },
        {
            "start": 1369130827,
            "stop": 1369132030
        },
        {
            "start": 1369132031,
            "stop": 1369133222
        },
        {
            "start": 1369133223,
            "stop": 1369133835
        },
        {
            "start": 1369133838,
            "stop": 1369133989
        },
        {
            "start": 1369141127,
            "stop": 1369141246
        },
        {
            "start": 1369141248,
            "stop": 1369142491
        },
        {
            "start": 1369142493,
            "stop": 1369143815
        },
        {
            "start": 1369143817,
            "stop": 1369144736
        },
        {
            "start": 1369144738,
            "stop": 1369145188
        },
        {
            "start": 1369145190,
            "stop": 1369146623
        },
        {
            "start": 1369146628,
            "stop": 1369148094
        },
        {
            "start": 1369148096,
            "stop": 1369149909
        }
    ]
}