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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT1/segments?format=api&page=181",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT1/segments?format=api&page=179",
    "results_count": 11387,
    "results_per_page": 20,
    "num_pages": 570,
    "page_number": 180,
    "results": [
        {
            "start": 831680592,
            "stop": 831682083
        },
        {
            "start": 831682085,
            "stop": 831689093
        },
        {
            "start": 831689095,
            "stop": 831694382
        },
        {
            "start": 831694839,
            "stop": 831697990
        },
        {
            "start": 831697992,
            "stop": 831698461
        },
        {
            "start": 831698987,
            "stop": 831706446
        },
        {
            "start": 831706448,
            "stop": 831708942
        },
        {
            "start": 831708944,
            "stop": 831712547
        },
        {
            "start": 831712549,
            "stop": 831714449
        },
        {
            "start": 831714451,
            "stop": 831716290
        },
        {
            "start": 831716292,
            "stop": 831716760
        },
        {
            "start": 831718027,
            "stop": 831718290
        },
        {
            "start": 831720301,
            "stop": 831722945
        },
        {
            "start": 831722947,
            "stop": 831723347
        },
        {
            "start": 831723348,
            "stop": 831725077
        },
        {
            "start": 831725557,
            "stop": 831731760
        },
        {
            "start": 831731762,
            "stop": 831731874
        },
        {
            "start": 831731876,
            "stop": 831731909
        },
        {
            "start": 831731910,
            "stop": 831731953
        },
        {
            "start": 831731955,
            "stop": 831734192
        }
    ]
}