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/GW191216_213338-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": 7,
    "results_per_page": 20,
    "num_pages": 1,
    "page_number": 1,
    "results": [
        {
            "start": 1260565189,
            "stop": 1260565735
        },
        {
            "start": 1260565736,
            "stop": 1260567277
        },
        {
            "start": 1260567278,
            "stop": 1260567298
        },
        {
            "start": 1260567299,
            "stop": 1260567367
        },
        {
            "start": 1260567368,
            "stop": 1260568491
        },
        {
            "start": 1260568492,
            "stop": 1260568575
        },
        {
            "start": 1260568576,
            "stop": 1260569285
        }
    ]
}