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=6950
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=6951",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=6949",
    "results_count": 143782,
    "results_per_page": 20,
    "num_pages": 7190,
    "page_number": 6950,
    "results": [
        {
            "start": 873741896,
            "stop": 873741907
        },
        {
            "start": 873741910,
            "stop": 873741960
        },
        {
            "start": 873742200,
            "stop": 873742210
        },
        {
            "start": 873742213,
            "stop": 873742277
        },
        {
            "start": 873742289,
            "stop": 873742302
        },
        {
            "start": 873742306,
            "stop": 873742333
        },
        {
            "start": 873742336,
            "stop": 873742374
        },
        {
            "start": 873742377,
            "stop": 873742407
        },
        {
            "start": 873742414,
            "stop": 873742442
        },
        {
            "start": 873742446,
            "stop": 873742533
        },
        {
            "start": 873742536,
            "stop": 873742616
        },
        {
            "start": 873742620,
            "stop": 873742703
        },
        {
            "start": 873742706,
            "stop": 873742812
        },
        {
            "start": 873742815,
            "stop": 873742865
        },
        {
            "start": 873742868,
            "stop": 873742925
        },
        {
            "start": 873742929,
            "stop": 873742978
        },
        {
            "start": 873742982,
            "stop": 873742984
        },
        {
            "start": 873742988,
            "stop": 873743075
        },
        {
            "start": 873743080,
            "stop": 873743192
        },
        {
            "start": 873743201,
            "stop": 873743231
        }
    ]
}