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=204
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=205",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=203",
    "results_count": 168343,
    "results_per_page": 20,
    "num_pages": 8418,
    "page_number": 204,
    "results": [
        {
            "start": 817721131,
            "stop": 817721864
        },
        {
            "start": 817721883,
            "stop": 817722350
        },
        {
            "start": 817722367,
            "stop": 817722569
        },
        {
            "start": 817722600,
            "stop": 817722839
        },
        {
            "start": 817722861,
            "stop": 817722905
        },
        {
            "start": 817722924,
            "stop": 817723047
        },
        {
            "start": 817723066,
            "stop": 817723120
        },
        {
            "start": 817723203,
            "stop": 817723215
        },
        {
            "start": 817723266,
            "stop": 817723429
        },
        {
            "start": 817723449,
            "stop": 817723816
        },
        {
            "start": 817723835,
            "stop": 817723949
        },
        {
            "start": 817723987,
            "stop": 817724014
        },
        {
            "start": 817724035,
            "stop": 817724530
        },
        {
            "start": 817724549,
            "stop": 817724693
        },
        {
            "start": 817724712,
            "stop": 817724733
        },
        {
            "start": 817724772,
            "stop": 817724867
        },
        {
            "start": 817724918,
            "stop": 817725190
        },
        {
            "start": 817725209,
            "stop": 817725213
        },
        {
            "start": 817725243,
            "stop": 817725318
        },
        {
            "start": 817725341,
            "stop": 817725834
        }
    ]
}