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/O1/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/O1/timelines/H1_BURST_CAT3/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/O1/timelines/H1_BURST_CAT3/segments?format=api&page=122",
    "results_count": 106837,
    "results_per_page": 20,
    "num_pages": 5342,
    "page_number": 123,
    "results": [
        {
            "start": 1126637112,
            "stop": 1126637116
        },
        {
            "start": 1126637177,
            "stop": 1126637178
        },
        {
            "start": 1126637183,
            "stop": 1126637210
        },
        {
            "start": 1126637211,
            "stop": 1126637228
        },
        {
            "start": 1126637229,
            "stop": 1126637232
        },
        {
            "start": 1126637234,
            "stop": 1126637236
        },
        {
            "start": 1126637237,
            "stop": 1126637293
        },
        {
            "start": 1126637294,
            "stop": 1126637343
        },
        {
            "start": 1126637344,
            "stop": 1126637351
        },
        {
            "start": 1126637352,
            "stop": 1126637357
        },
        {
            "start": 1126637537,
            "stop": 1126637540
        },
        {
            "start": 1126637541,
            "stop": 1126637550
        },
        {
            "start": 1126637551,
            "stop": 1126637562
        },
        {
            "start": 1126637563,
            "stop": 1126637564
        },
        {
            "start": 1126637567,
            "stop": 1126637569
        },
        {
            "start": 1126637571,
            "stop": 1126637725
        },
        {
            "start": 1126637726,
            "stop": 1126637731
        },
        {
            "start": 1126637733,
            "stop": 1126637865
        },
        {
            "start": 1126637866,
            "stop": 1126638231
        },
        {
            "start": 1126638232,
            "stop": 1126638233
        }
    ]
}