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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT2/segments?format=api&page=101",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT2/segments?format=api&page=99",
    "results_count": 81402,
    "results_per_page": 20,
    "num_pages": 4071,
    "page_number": 100,
    "results": [
        {
            "start": 818053904,
            "stop": 818053911
        },
        {
            "start": 818053916,
            "stop": 818053919
        },
        {
            "start": 818053923,
            "stop": 818053928
        },
        {
            "start": 818053935,
            "stop": 818053946
        },
        {
            "start": 818053950,
            "stop": 818053953
        },
        {
            "start": 818053956,
            "stop": 818053967
        },
        {
            "start": 818053972,
            "stop": 818053976
        },
        {
            "start": 818053979,
            "stop": 818053983
        },
        {
            "start": 818053986,
            "stop": 818053996
        },
        {
            "start": 818053999,
            "stop": 818054003
        },
        {
            "start": 818054008,
            "stop": 818054012
        },
        {
            "start": 818054017,
            "stop": 818054026
        },
        {
            "start": 818054029,
            "stop": 818054033
        },
        {
            "start": 818054036,
            "stop": 818054042
        },
        {
            "start": 818054052,
            "stop": 818054053
        },
        {
            "start": 818054056,
            "stop": 818054064
        },
        {
            "start": 818054067,
            "stop": 818054073
        },
        {
            "start": 818054078,
            "stop": 818054082
        },
        {
            "start": 818054085,
            "stop": 818054094
        },
        {
            "start": 818054097,
            "stop": 818054120
        }
    ]
}