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=345
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=346",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=344",
    "results_count": 168343,
    "results_per_page": 20,
    "num_pages": 8418,
    "page_number": 345,
    "results": [
        {
            "start": 818858007,
            "stop": 818858019
        },
        {
            "start": 818858220,
            "stop": 818858232
        },
        {
            "start": 818858282,
            "stop": 818858323
        },
        {
            "start": 818858383,
            "stop": 818858393
        },
        {
            "start": 818858439,
            "stop": 818858465
        },
        {
            "start": 818858676,
            "stop": 818858684
        },
        {
            "start": 818858717,
            "stop": 818858764
        },
        {
            "start": 818858785,
            "stop": 818858801
        },
        {
            "start": 818858851,
            "stop": 818858861
        },
        {
            "start": 818859009,
            "stop": 818859060
        },
        {
            "start": 818859180,
            "stop": 818859244
        },
        {
            "start": 818859264,
            "stop": 818859275
        },
        {
            "start": 818859280,
            "stop": 818859288
        },
        {
            "start": 818859600,
            "stop": 818859619
        },
        {
            "start": 818859720,
            "stop": 818859781
        },
        {
            "start": 818859805,
            "stop": 818859833
        },
        {
            "start": 818859919,
            "stop": 818859972
        },
        {
            "start": 818859992,
            "stop": 818860020
        },
        {
            "start": 818860133,
            "stop": 818860140
        },
        {
            "start": 818860168,
            "stop": 818860188
        }
    ]
}