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

{
    "next": null,
    "previous": "https://gwosc.org/api/v2/event-versions/GW190531_023648-v1/timelines/H1_BURST_CAT3/segments?format=api&page=3",
    "results_count": 67,
    "results_per_page": 20,
    "num_pages": 4,
    "page_number": 4,
    "results": [
        {
            "start": 1243307154,
            "stop": 1243307174
        },
        {
            "start": 1243307176,
            "stop": 1243307184
        },
        {
            "start": 1243307185,
            "stop": 1243307413
        },
        {
            "start": 1243307414,
            "stop": 1243307441
        },
        {
            "start": 1243307442,
            "stop": 1243307460
        },
        {
            "start": 1243307461,
            "stop": 1243307463
        },
        {
            "start": 1243307465,
            "stop": 1243307475
        }
    ]
}