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

{
    "next": null,
    "previous": "https://gwosc.org/api/v2/event-versions/GW190602_175927-v1/timelines/H1_BURST_CAT2/segments?format=api&page=2",
    "results_count": 46,
    "results_per_page": 20,
    "num_pages": 3,
    "page_number": 3,
    "results": [
        {
            "start": 1243534476,
            "stop": 1243534654
        },
        {
            "start": 1243534655,
            "stop": 1243535397
        },
        {
            "start": 1243535399,
            "stop": 1243535409
        },
        {
            "start": 1243535410,
            "stop": 1243535425
        },
        {
            "start": 1243535427,
            "stop": 1243535611
        },
        {
            "start": 1243535612,
            "stop": 1243535634
        }
    ]
}