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/GW190403_051519-v1/timelines/L1_CBC_CAT2/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/GW190403_051519-v1/timelines/L1_CBC_CAT2/segments?format=api",
    "results_count": 30,
    "results_per_page": 20,
    "num_pages": 2,
    "page_number": 2,
    "results": [
        {
            "start": 1238303965,
            "stop": 1238303966
        },
        {
            "start": 1238303970,
            "stop": 1238303990
        },
        {
            "start": 1238303994,
            "stop": 1238304387
        },
        {
            "start": 1238304388,
            "stop": 1238304541
        },
        {
            "start": 1238304554,
            "stop": 1238304825
        },
        {
            "start": 1238304826,
            "stop": 1238304831
        },
        {
            "start": 1238304832,
            "stop": 1238304851
        },
        {
            "start": 1238304852,
            "stop": 1238305112
        },
        {
            "start": 1238305113,
            "stop": 1238305248
        },
        {
            "start": 1238305250,
            "stop": 1238305786
        }
    ]
}