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=111
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=112",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=110",
    "results_count": 168343,
    "results_per_page": 20,
    "num_pages": 8418,
    "page_number": 111,
    "results": [
        {
            "start": 816945658,
            "stop": 816945676
        },
        {
            "start": 816945697,
            "stop": 816945700
        },
        {
            "start": 816945736,
            "stop": 816945753
        },
        {
            "start": 816945778,
            "stop": 816945843
        },
        {
            "start": 816945887,
            "stop": 816945892
        },
        {
            "start": 816945989,
            "stop": 816946034
        },
        {
            "start": 816946073,
            "stop": 816946088
        },
        {
            "start": 816946138,
            "stop": 816946195
        },
        {
            "start": 816946217,
            "stop": 816946254
        },
        {
            "start": 816946283,
            "stop": 816946289
        },
        {
            "start": 816946327,
            "stop": 816946383
        },
        {
            "start": 816946403,
            "stop": 816946498
        },
        {
            "start": 816946620,
            "stop": 816946627
        },
        {
            "start": 816946653,
            "stop": 816946656
        },
        {
            "start": 816946702,
            "stop": 816946751
        },
        {
            "start": 816946813,
            "stop": 816946850
        },
        {
            "start": 816946944,
            "stop": 816946962
        },
        {
            "start": 816947037,
            "stop": 816947058
        },
        {
            "start": 816947097,
            "stop": 816947126
        },
        {
            "start": 816947146,
            "stop": 816947223
        }
    ]
}