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=123
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=124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT2/segments?format=api&page=122",
    "results_count": 81402,
    "results_per_page": 20,
    "num_pages": 4071,
    "page_number": 123,
    "results": [
        {
            "start": 818066529,
            "stop": 818066552
        },
        {
            "start": 818066558,
            "stop": 818066560
        },
        {
            "start": 818066563,
            "stop": 818066589
        },
        {
            "start": 818066592,
            "stop": 818066603
        },
        {
            "start": 818066616,
            "stop": 818066621
        },
        {
            "start": 818066624,
            "stop": 818066626
        },
        {
            "start": 818066631,
            "stop": 818066657
        },
        {
            "start": 818066661,
            "stop": 818066674
        },
        {
            "start": 818066677,
            "stop": 818066683
        },
        {
            "start": 818066686,
            "stop": 818066693
        },
        {
            "start": 818066699,
            "stop": 818066707
        },
        {
            "start": 818066710,
            "stop": 818066712
        },
        {
            "start": 818066715,
            "stop": 818066716
        },
        {
            "start": 818066724,
            "stop": 818066725
        },
        {
            "start": 818066729,
            "stop": 818066732
        },
        {
            "start": 818066747,
            "stop": 818066750
        },
        {
            "start": 818066753,
            "stop": 818066768
        },
        {
            "start": 818066771,
            "stop": 818066777
        },
        {
            "start": 818066780,
            "stop": 818066781
        },
        {
            "start": 818066785,
            "stop": 818066797
        }
    ]
}