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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2305",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2303",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 2304,
    "results": [
        {
            "start": 871389800,
            "stop": 871389811
        },
        {
            "start": 871389828,
            "stop": 871391750
        },
        {
            "start": 871391830,
            "stop": 871392482
        },
        {
            "start": 871393624,
            "stop": 871393960
        },
        {
            "start": 871394045,
            "stop": 871394400
        },
        {
            "start": 871394880,
            "stop": 871395670
        },
        {
            "start": 871395687,
            "stop": 871398140
        },
        {
            "start": 871398157,
            "stop": 871398301
        },
        {
            "start": 871398318,
            "stop": 871399016
        },
        {
            "start": 871399033,
            "stop": 871399451
        },
        {
            "start": 871399468,
            "stop": 871399530
        },
        {
            "start": 871399547,
            "stop": 871399822
        },
        {
            "start": 871399826,
            "stop": 871401770
        },
        {
            "start": 871401850,
            "stop": 871402123
        },
        {
            "start": 871402140,
            "stop": 871403407
        },
        {
            "start": 871403445,
            "stop": 871403450
        },
        {
            "start": 871403530,
            "stop": 871404121
        },
        {
            "start": 871404138,
            "stop": 871404356
        },
        {
            "start": 871404372,
            "stop": 871405324
        },
        {
            "start": 871405341,
            "stop": 871406390
        }
    ]
}