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/GW190620_030421-v1/timelines/L1_BURST_CAT2/segments?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": null,
    "previous": null,
    "results_count": 11,
    "results_per_page": 20,
    "num_pages": 1,
    "page_number": 1,
    "results": [
        {
            "start": 1245033032,
            "stop": 1245033071
        },
        {
            "start": 1245033076,
            "stop": 1245033450
        },
        {
            "start": 1245033458,
            "stop": 1245033639
        },
        {
            "start": 1245033644,
            "stop": 1245033780
        },
        {
            "start": 1245033788,
            "stop": 1245034530
        },
        {
            "start": 1245034532,
            "stop": 1245034539
        },
        {
            "start": 1245034544,
            "stop": 1245034954
        },
        {
            "start": 1245034959,
            "stop": 1245035053
        },
        {
            "start": 1245035057,
            "stop": 1245035062
        },
        {
            "start": 1245035067,
            "stop": 1245035422
        },
        {
            "start": 1245035434,
            "stop": 1245037128
        }
    ]
}