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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_STOCH_CAT1/segments?format=api&page=151",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_STOCH_CAT1/segments?format=api&page=149",
    "results_count": 6551,
    "results_per_page": 20,
    "num_pages": 328,
    "page_number": 150,
    "results": [
        {
            "start": 836543112,
            "stop": 836601962
        },
        {
            "start": 836603596,
            "stop": 836605335
        },
        {
            "start": 836605338,
            "stop": 836664956
        },
        {
            "start": 836664959,
            "stop": 836664960
        },
        {
            "start": 836664961,
            "stop": 836665244
        },
        {
            "start": 836701816,
            "stop": 836709913
        },
        {
            "start": 836710680,
            "stop": 836763587
        },
        {
            "start": 836763588,
            "stop": 836769059
        },
        {
            "start": 836770538,
            "stop": 836771107
        },
        {
            "start": 836771783,
            "stop": 836776331
        },
        {
            "start": 836777056,
            "stop": 836779005
        },
        {
            "start": 836779006,
            "stop": 836779117
        },
        {
            "start": 836779118,
            "stop": 836782325
        },
        {
            "start": 836796571,
            "stop": 836853248
        },
        {
            "start": 836854059,
            "stop": 836858163
        },
        {
            "start": 836858169,
            "stop": 836861754
        },
        {
            "start": 836862538,
            "stop": 836880375
        },
        {
            "start": 836882638,
            "stop": 836928973
        },
        {
            "start": 836930041,
            "stop": 836932087
        },
        {
            "start": 836934070,
            "stop": 836943492
        }
    ]
}