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

{
    "next": null,
    "previous": "https://gwosc.org/api/v2/runs/O4b/timelines/V1_BURST_CAT1/segments?format=api&page=249",
    "results_count": 4982,
    "results_per_page": 20,
    "num_pages": 250,
    "page_number": 250,
    "results": [
        {
            "start": 1422081779,
            "stop": 1422081818
        },
        {
            "start": 1422081823,
            "stop": 1422081958
        }
    ]
}