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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT2/segments?format=api&page=2235",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT2/segments?format=api&page=2233",
    "results_count": 47811,
    "results_per_page": 20,
    "num_pages": 2391,
    "page_number": 2234,
    "results": [
        {
            "start": 873112725,
            "stop": 873112972
        },
        {
            "start": 873113040,
            "stop": 873113046
        },
        {
            "start": 873113065,
            "stop": 873113085
        },
        {
            "start": 873113199,
            "stop": 873113250
        },
        {
            "start": 873113296,
            "stop": 873113329
        },
        {
            "start": 873113348,
            "stop": 873113382
        },
        {
            "start": 873113416,
            "stop": 873113442
        },
        {
            "start": 873113472,
            "stop": 873113490
        },
        {
            "start": 873113530,
            "stop": 873113556
        },
        {
            "start": 873113611,
            "stop": 873113650
        },
        {
            "start": 873113679,
            "stop": 873113693
        },
        {
            "start": 873113717,
            "stop": 873113732
        },
        {
            "start": 873113762,
            "stop": 873113781
        },
        {
            "start": 873113800,
            "stop": 873113805
        },
        {
            "start": 873113824,
            "stop": 873113856
        },
        {
            "start": 873113902,
            "stop": 873113913
        },
        {
            "start": 873113932,
            "stop": 873113968
        },
        {
            "start": 873113989,
            "stop": 873113995
        },
        {
            "start": 873114014,
            "stop": 873114032
        },
        {
            "start": 873114086,
            "stop": 873114101
        }
    ]
}