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=8050
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=8051",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=8049",
    "results_count": 168343,
    "results_per_page": 20,
    "num_pages": 8418,
    "page_number": 8050,
    "results": [
        {
            "start": 872247904,
            "stop": 872247945
        },
        {
            "start": 872247973,
            "stop": 872247999
        },
        {
            "start": 872248033,
            "stop": 872248050
        },
        {
            "start": 872248069,
            "stop": 872248072
        },
        {
            "start": 872248105,
            "stop": 872248108
        },
        {
            "start": 872248128,
            "stop": 872248133
        },
        {
            "start": 872248182,
            "stop": 872248224
        },
        {
            "start": 872248256,
            "stop": 872248276
        },
        {
            "start": 872248298,
            "stop": 872248312
        },
        {
            "start": 872248331,
            "stop": 872248458
        },
        {
            "start": 872248496,
            "stop": 872248499
        },
        {
            "start": 872248519,
            "stop": 872248536
        },
        {
            "start": 872248559,
            "stop": 872248805
        },
        {
            "start": 872248840,
            "stop": 872248966
        },
        {
            "start": 872248985,
            "stop": 872249000
        },
        {
            "start": 872249019,
            "stop": 872249191
        },
        {
            "start": 872249219,
            "stop": 872249288
        },
        {
            "start": 872249310,
            "stop": 872249334
        },
        {
            "start": 872249354,
            "stop": 872249443
        },
        {
            "start": 872249460,
            "stop": 872249530
        }
    ]
}