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=10011
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=10012",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10010",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 10011,
    "results": [
        {
            "start": 872297785,
            "stop": 872297791
        },
        {
            "start": 872297827,
            "stop": 872297880
        },
        {
            "start": 872297928,
            "stop": 872297967
        },
        {
            "start": 872298095,
            "stop": 872298703
        },
        {
            "start": 872298739,
            "stop": 872298867
        },
        {
            "start": 872298947,
            "stop": 872299019
        },
        {
            "start": 872299055,
            "stop": 872299360
        },
        {
            "start": 872299377,
            "stop": 872299682
        },
        {
            "start": 872299718,
            "stop": 872299832
        },
        {
            "start": 872299869,
            "stop": 872299888
        },
        {
            "start": 872299924,
            "stop": 872300603
        },
        {
            "start": 872300639,
            "stop": 872300870
        },
        {
            "start": 872300915,
            "stop": 872300926
        },
        {
            "start": 872300976,
            "stop": 872300984
        },
        {
            "start": 872301045,
            "stop": 872301084
        },
        {
            "start": 872301134,
            "stop": 872301183
        },
        {
            "start": 872301219,
            "stop": 872301262
        },
        {
            "start": 872301320,
            "stop": 872301338
        },
        {
            "start": 872301406,
            "stop": 872301454
        },
        {
            "start": 872301490,
            "stop": 872301515
        }
    ]
}