Return the segments for a given timeline for a run.

Query parameters:

  • start=<int>: Initial GPS time of the desired GPS interval.
  • stop=<int>: Final GPS time of the desired GPS interval.
  • compact: Return a list of segment [start, stop] list.
  • pagesize=<int>: Number of results to return per page.
GET /api/v2/runs/O2/timelines/H1_BURST_CAT3/segments?format=api&page=123
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://gwosc.org/api/v2/runs/O2/timelines/H1_BURST_CAT3/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/O2/timelines/H1_BURST_CAT3/segments?format=api&page=122",
    "results_count": 11548,
    "results_per_page": 20,
    "num_pages": 578,
    "page_number": 123,
    "results": [
        {
            "start": 1175454838,
            "stop": 1175454976
        },
        {
            "start": 1175454979,
            "stop": 1175455455
        },
        {
            "start": 1175455458,
            "stop": 1175455464
        },
        {
            "start": 1175455465,
            "stop": 1175457670
        },
        {
            "start": 1175457671,
            "stop": 1175457805
        },
        {
            "start": 1175457809,
            "stop": 1175458012
        },
        {
            "start": 1175458014,
            "stop": 1175458331
        },
        {
            "start": 1175458332,
            "stop": 1175458333
        },
        {
            "start": 1175458334,
            "stop": 1175458337
        },
        {
            "start": 1175458338,
            "stop": 1175458346
        },
        {
            "start": 1175458348,
            "stop": 1175458408
        },
        {
            "start": 1175458411,
            "stop": 1175458540
        },
        {
            "start": 1175458541,
            "stop": 1175458543
        },
        {
            "start": 1175458545,
            "stop": 1175458588
        },
        {
            "start": 1175458589,
            "stop": 1175458590
        },
        {
            "start": 1175458591,
            "stop": 1175458592
        },
        {
            "start": 1175458593,
            "stop": 1175458595
        },
        {
            "start": 1175458598,
            "stop": 1175458673
        },
        {
            "start": 1175459074,
            "stop": 1175459621
        },
        {
            "start": 1175459626,
            "stop": 1175459627
        }
    ]
}