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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/H1_CBCLOW_CAT3/segments?format=api&page=8001",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/H1_CBCLOW_CAT3/segments?format=api&page=7999",
    "results_count": 164670,
    "results_per_page": 20,
    "num_pages": 8234,
    "page_number": 8000,
    "results": [
        {
            "start": 970321454,
            "stop": 970321614
        },
        {
            "start": 970321620,
            "stop": 970321662
        },
        {
            "start": 970321665,
            "stop": 970321669
        },
        {
            "start": 970321672,
            "stop": 970321692
        },
        {
            "start": 970321695,
            "stop": 970321712
        },
        {
            "start": 970321715,
            "stop": 970321718
        },
        {
            "start": 970321721,
            "stop": 970321732
        },
        {
            "start": 970321748,
            "stop": 970321751
        },
        {
            "start": 970321762,
            "stop": 970321763
        },
        {
            "start": 970321810,
            "stop": 970321811
        },
        {
            "start": 970321821,
            "stop": 970321822
        },
        {
            "start": 970321838,
            "stop": 970321846
        },
        {
            "start": 970321863,
            "stop": 970321871
        },
        {
            "start": 970321877,
            "stop": 970321887
        },
        {
            "start": 970321893,
            "stop": 970321901
        },
        {
            "start": 970321910,
            "stop": 970321917
        },
        {
            "start": 970321933,
            "stop": 970322009
        },
        {
            "start": 970322013,
            "stop": 970322021
        },
        {
            "start": 970322024,
            "stop": 970322045
        },
        {
            "start": 970322048,
            "stop": 970322070
        }
    ]
}