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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT3/segments?format=api&page=5013",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT3/segments?format=api&page=5011",
    "results_count": 106145,
    "results_per_page": 20,
    "num_pages": 5308,
    "page_number": 5012,
    "results": [
        {
            "start": 872324234,
            "stop": 872324322
        },
        {
            "start": 872324385,
            "stop": 872324437
        },
        {
            "start": 872324495,
            "stop": 872324505
        },
        {
            "start": 872324541,
            "stop": 872324564
        },
        {
            "start": 872324633,
            "stop": 872324684
        },
        {
            "start": 872324718,
            "stop": 872324994
        },
        {
            "start": 872325030,
            "stop": 872325150
        },
        {
            "start": 872326125,
            "stop": 872326709
        },
        {
            "start": 872326726,
            "stop": 872327600
        },
        {
            "start": 872327636,
            "stop": 872328648
        },
        {
            "start": 872328711,
            "stop": 872328844
        },
        {
            "start": 872328880,
            "stop": 872328931
        },
        {
            "start": 872328948,
            "stop": 872329657
        },
        {
            "start": 872329693,
            "stop": 872329727
        },
        {
            "start": 872329763,
            "stop": 872329777
        },
        {
            "start": 872329814,
            "stop": 872329836
        },
        {
            "start": 872329872,
            "stop": 872330616
        },
        {
            "start": 872330652,
            "stop": 872331085
        },
        {
            "start": 872331101,
            "stop": 872333024
        },
        {
            "start": 872333060,
            "stop": 872333181
        }
    ]
}