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/170219-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": 1171546219,
            "stop": 1171546981
        },
        {
            "start": 1171546983,
            "stop": 1171547910
        },
        {
            "start": 1171547912,
            "stop": 1171548753
        },
        {
            "start": 1171548758,
            "stop": 1171548760
        },
        {
            "start": 1171548764,
            "stop": 1171548944
        },
        {
            "start": 1171548946,
            "stop": 1171549999
        },
        {
            "start": 1171550001,
            "stop": 1171550315
        }
    ]
}