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=222
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": null,
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/H1_BURST_CAT3/segments?format=api&page=221",
    "results_count": 4426,
    "results_per_page": 20,
    "num_pages": 222,
    "page_number": 222,
    "results": [
        {
            "start": 1389444421,
            "stop": 1389445795
        },
        {
            "start": 1389445800,
            "stop": 1389449436
        },
        {
            "start": 1389449439,
            "stop": 1389452838
        },
        {
            "start": 1389452843,
            "stop": 1389453372
        },
        {
            "start": 1389453375,
            "stop": 1389453726
        },
        {
            "start": 1389454819,
            "stop": 1389455118
        }
    ]
}