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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=8096",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=8094",
    "results_count": 168343,
    "results_per_page": 20,
    "num_pages": 8418,
    "page_number": 8095,
    "results": [
        {
            "start": 872558925,
            "stop": 872559540
        },
        {
            "start": 872559557,
            "stop": 872560870
        },
        {
            "start": 872560887,
            "stop": 872560998
        },
        {
            "start": 872561015,
            "stop": 872561151
        },
        {
            "start": 872561170,
            "stop": 872561698
        },
        {
            "start": 872561722,
            "stop": 872561836
        },
        {
            "start": 872561867,
            "stop": 872561927
        },
        {
            "start": 872561946,
            "stop": 872562399
        },
        {
            "start": 872562442,
            "stop": 872562736
        },
        {
            "start": 872562769,
            "stop": 872562773
        },
        {
            "start": 872562800,
            "stop": 872562809
        },
        {
            "start": 872562835,
            "stop": 872562837
        },
        {
            "start": 872562856,
            "stop": 872562922
        },
        {
            "start": 872562948,
            "stop": 872562949
        },
        {
            "start": 872562989,
            "stop": 872563012
        },
        {
            "start": 872563031,
            "stop": 872563160
        },
        {
            "start": 872563179,
            "stop": 872563249
        },
        {
            "start": 872563286,
            "stop": 872563457
        },
        {
            "start": 872563516,
            "stop": 872563519
        },
        {
            "start": 872563542,
            "stop": 872563686
        }
    ]
}