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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=112",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=110",
    "results_count": 298986,
    "results_per_page": 20,
    "num_pages": 14950,
    "page_number": 111,
    "results": [
        {
            "start": 932584035,
            "stop": 932585230
        },
        {
            "start": 932585248,
            "stop": 932585409
        },
        {
            "start": 932585427,
            "stop": 932585498
        },
        {
            "start": 932585500,
            "stop": 932585505
        },
        {
            "start": 932585523,
            "stop": 932585525
        },
        {
            "start": 932585544,
            "stop": 932585840
        },
        {
            "start": 932585858,
            "stop": 932585914
        },
        {
            "start": 932585916,
            "stop": 932586009
        },
        {
            "start": 932586032,
            "stop": 932586078
        },
        {
            "start": 932586080,
            "stop": 932586190
        },
        {
            "start": 932586192,
            "stop": 932586239
        },
        {
            "start": 932586257,
            "stop": 932586359
        },
        {
            "start": 932586377,
            "stop": 932586546
        },
        {
            "start": 932586564,
            "stop": 932586644
        },
        {
            "start": 932586662,
            "stop": 932586801
        },
        {
            "start": 932586820,
            "stop": 932586855
        },
        {
            "start": 932586875,
            "stop": 932586898
        },
        {
            "start": 932586919,
            "stop": 932586953
        },
        {
            "start": 932586994,
            "stop": 932586997
        },
        {
            "start": 932587064,
            "stop": 932587080
        }
    ]
}