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/GW190513_205428-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": 1241814039,
            "stop": 1241814293
        },
        {
            "start": 1241814297,
            "stop": 1241814507
        },
        {
            "start": 1241814510,
            "stop": 1241815176
        },
        {
            "start": 1241815185,
            "stop": 1241815427
        },
        {
            "start": 1241815431,
            "stop": 1241815759
        },
        {
            "start": 1241815764,
            "stop": 1241815877
        },
        {
            "start": 1241815881,
            "stop": 1241816474
        },
        {
            "start": 1241816479,
            "stop": 1241817790
        },
        {
            "start": 1241817795,
            "stop": 1241817907
        },
        {
            "start": 1241817911,
            "stop": 1241817940
        },
        {
            "start": 1241817944,
            "stop": 1241818102
        }
    ]
}