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/191225_215715-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": 6,
    "results_per_page": 20,
    "num_pages": 1,
    "page_number": 1,
    "results": [
        {
            "start": 1261344271,
            "stop": 1261344567
        },
        {
            "start": 1261344570,
            "stop": 1261344658
        },
        {
            "start": 1261344665,
            "stop": 1261345430
        },
        {
            "start": 1261345434,
            "stop": 1261346199
        },
        {
            "start": 1261346203,
            "stop": 1261346405
        },
        {
            "start": 1261346408,
            "stop": 1261348302
        }
    ]
}