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=80
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=81",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=79",
    "results_count": 168343,
    "results_per_page": 20,
    "num_pages": 8418,
    "page_number": 80,
    "results": [
        {
            "start": 816829547,
            "stop": 816829565
        },
        {
            "start": 816829589,
            "stop": 816829600
        },
        {
            "start": 816829671,
            "stop": 816829708
        },
        {
            "start": 816829727,
            "stop": 816829738
        },
        {
            "start": 816829767,
            "stop": 816829790
        },
        {
            "start": 816829930,
            "stop": 816829931
        },
        {
            "start": 816829956,
            "stop": 816829998
        },
        {
            "start": 816830018,
            "stop": 816830023
        },
        {
            "start": 816830058,
            "stop": 816830070
        },
        {
            "start": 816830133,
            "stop": 816830184
        },
        {
            "start": 816830386,
            "stop": 816830467
        },
        {
            "start": 816830502,
            "stop": 816830589
        },
        {
            "start": 816831356,
            "stop": 816831373
        },
        {
            "start": 816831393,
            "stop": 816831446
        },
        {
            "start": 816831600,
            "stop": 816831694
        },
        {
            "start": 816831714,
            "stop": 816831813
        },
        {
            "start": 816831851,
            "stop": 816831984
        },
        {
            "start": 816832146,
            "stop": 816832213
        },
        {
            "start": 816832272,
            "stop": 816832275
        },
        {
            "start": 816832297,
            "stop": 816832303
        }
    ]
}