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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=102",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=100",
    "results_count": 298986,
    "results_per_page": 20,
    "num_pages": 14950,
    "page_number": 101,
    "results": [
        {
            "start": 932327037,
            "stop": 932327166
        },
        {
            "start": 932327168,
            "stop": 932327257
        },
        {
            "start": 932327260,
            "stop": 932327330
        },
        {
            "start": 932327332,
            "stop": 932327336
        },
        {
            "start": 932327338,
            "stop": 932327830
        },
        {
            "start": 932327832,
            "stop": 932328422
        },
        {
            "start": 932328427,
            "stop": 932328473
        },
        {
            "start": 932328475,
            "stop": 932328933
        },
        {
            "start": 932329813,
            "stop": 932340573
        },
        {
            "start": 932341069,
            "stop": 932341202
        },
        {
            "start": 932341207,
            "stop": 932343217
        },
        {
            "start": 932343222,
            "stop": 932343569
        },
        {
            "start": 932344192,
            "stop": 932344596
        },
        {
            "start": 932344598,
            "stop": 932345102
        },
        {
            "start": 932345119,
            "stop": 932350683
        },
        {
            "start": 932350702,
            "stop": 932350772
        },
        {
            "start": 932350791,
            "stop": 932350972
        },
        {
            "start": 932350990,
            "stop": 932354352
        },
        {
            "start": 932354371,
            "stop": 932355628
        },
        {
            "start": 932355633,
            "stop": 932356591
        }
    ]
}