Return the segments for a given timeline for an event version.

Query parameters:

  • start: Initial GPS time of the desired GPS interval.
  • stop: Final GPS time of the desired GPS interval.
  • compact: Return a list of segment [start, stop] list.
GET /api/v2/event-versions/GW191129_134029-v1/timelines/H1_BURST_CAT3/segments?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": null,
    "previous": null,
    "results_count": 6,
    "results_per_page": 20,
    "num_pages": 1,
    "page_number": 1,
    "results": [
        {
            "start": 1259068000,
            "stop": 1259068469
        },
        {
            "start": 1259068473,
            "stop": 1259068581
        },
        {
            "start": 1259068584,
            "stop": 1259068886
        },
        {
            "start": 1259068889,
            "stop": 1259069293
        },
        {
            "start": 1259069296,
            "stop": 1259071076
        },
        {
            "start": 1259071079,
            "stop": 1259071940
        }
    ]
}