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

{
    "next": null,
    "previous": "https://gwosc.org/api/v2/event-versions/GW190805_211137-v1/timelines/H1_BURST_CAT3/segments?format=api",
    "results_count": 26,
    "results_per_page": 20,
    "num_pages": 2,
    "page_number": 2,
    "results": [
        {
            "start": 1249076448,
            "stop": 1249076536
        },
        {
            "start": 1249076538,
            "stop": 1249076620
        },
        {
            "start": 1249076623,
            "stop": 1249076624
        },
        {
            "start": 1249076627,
            "stop": 1249076661
        },
        {
            "start": 1249076663,
            "stop": 1249076737
        },
        {
            "start": 1249076739,
            "stop": 1249076764
        }
    ]
}