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

{
    "next": null,
    "previous": "https://gwosc.org/api/v2/runs/O4b/timelines/H1_BURST_CAT3/segments?format=api&page=193",
    "results_count": 3868,
    "results_per_page": 20,
    "num_pages": 194,
    "page_number": 194,
    "results": [
        {
            "start": 1422090311,
            "stop": 1422092787
        },
        {
            "start": 1422092791,
            "stop": 1422093076
        },
        {
            "start": 1422098134,
            "stop": 1422098298
        },
        {
            "start": 1422098778,
            "stop": 1422106421
        },
        {
            "start": 1422106424,
            "stop": 1422110037
        },
        {
            "start": 1422110042,
            "stop": 1422112926
        },
        {
            "start": 1422114027,
            "stop": 1422114192
        },
        {
            "start": 1422114196,
            "stop": 1422114318
        }
    ]
}