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

{
    "next": null,
    "previous": "https://gwosc.org/api/v2/event-versions/151116-v1/timelines/H1_CBC_CAT2/segments?format=api&page=7",
    "results_count": 142,
    "results_per_page": 20,
    "num_pages": 8,
    "page_number": 8,
    "results": [
        {
            "start": 1131750914,
            "stop": 1131750917
        },
        {
            "start": 1131750918,
            "stop": 1131750974
        }
    ]
}