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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=21",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=19",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 20,
    "results": [
        {
            "start": 816272726,
            "stop": 816272787
        },
        {
            "start": 816272797,
            "stop": 816272804
        },
        {
            "start": 816272811,
            "stop": 816272871
        },
        {
            "start": 816272879,
            "stop": 816272897
        },
        {
            "start": 816272914,
            "stop": 816272923
        },
        {
            "start": 816272927,
            "stop": 816272931
        },
        {
            "start": 816272938,
            "stop": 816272941
        },
        {
            "start": 816272945,
            "stop": 816272952
        },
        {
            "start": 816272957,
            "stop": 816272962
        },
        {
            "start": 816272968,
            "stop": 816273004
        },
        {
            "start": 816273013,
            "stop": 816273094
        },
        {
            "start": 816273106,
            "stop": 816273130
        },
        {
            "start": 816273135,
            "stop": 816273138
        },
        {
            "start": 816273147,
            "stop": 816273169
        },
        {
            "start": 816273177,
            "stop": 816273196
        },
        {
            "start": 816273200,
            "stop": 816273228
        },
        {
            "start": 816273275,
            "stop": 816273295
        },
        {
            "start": 816273302,
            "stop": 816273305
        },
        {
            "start": 816273308,
            "stop": 816273317
        },
        {
            "start": 816273324,
            "stop": 816273335
        }
    ]
}