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

{
    "next": "https://gwosc.org/api/v2/runs/O3a/timelines/L1_CBC_CAT2/segments?format=api&page=223",
    "previous": "https://gwosc.org/api/v2/runs/O3a/timelines/L1_CBC_CAT2/segments?format=api&page=221",
    "results_count": 7130,
    "results_per_page": 20,
    "num_pages": 357,
    "page_number": 222,
    "results": [
        {
            "start": 1240203306,
            "stop": 1240203425
        },
        {
            "start": 1240203426,
            "stop": 1240203545
        },
        {
            "start": 1240203546,
            "stop": 1240203645
        },
        {
            "start": 1240203646,
            "stop": 1240203785
        },
        {
            "start": 1240203786,
            "stop": 1240203905
        },
        {
            "start": 1240203906,
            "stop": 1240204025
        },
        {
            "start": 1240204026,
            "stop": 1240204145
        },
        {
            "start": 1240204146,
            "stop": 1240204265
        },
        {
            "start": 1240204266,
            "stop": 1240204385
        },
        {
            "start": 1240204386,
            "stop": 1240204485
        },
        {
            "start": 1240204486,
            "stop": 1240204625
        },
        {
            "start": 1240204626,
            "stop": 1240204745
        },
        {
            "start": 1240204746,
            "stop": 1240204865
        },
        {
            "start": 1240204866,
            "stop": 1240204985
        },
        {
            "start": 1240204986,
            "stop": 1240205105
        },
        {
            "start": 1240205106,
            "stop": 1240205225
        },
        {
            "start": 1240205226,
            "stop": 1240205345
        },
        {
            "start": 1240205346,
            "stop": 1240205465
        },
        {
            "start": 1240205466,
            "stop": 1240205585
        },
        {
            "start": 1240205586,
            "stop": 1240205705
        }
    ]
}