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/GW191204_171526-v1/timelines/L1_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": 1259512896,
            "stop": 1259513609
        },
        {
            "start": 1259513705,
            "stop": 1259514091
        },
        {
            "start": 1259514094,
            "stop": 1259514501
        },
        {
            "start": 1259514504,
            "stop": 1259515017
        },
        {
            "start": 1259515021,
            "stop": 1259515737
        },
        {
            "start": 1259515740,
            "stop": 1259515983
        },
        {
            "start": 1259515990,
            "stop": 1259516992
        }
    ]
}