Return the segments for a given timeline for a run.

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

{
    "next": null,
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3E/segments?format=api&page=16832",
    "results_count": 336645,
    "results_per_page": 20,
    "num_pages": 16833,
    "page_number": 16833,
    "results": [
        {
            "start": 875230663,
            "stop": 875230954
        },
        {
            "start": 875230956,
            "stop": 875231132
        },
        {
            "start": 875231135,
            "stop": 875231666
        },
        {
            "start": 875231667,
            "stop": 875231781
        },
        {
            "start": 875231782,
            "stop": 875232014
        }
    ]
}