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=192
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=193",
    "previous": "https://gwosc.org/api/v2/runs/O3a/timelines/L1_CBC_CAT2/segments?format=api&page=191",
    "results_count": 7130,
    "results_per_page": 20,
    "num_pages": 357,
    "page_number": 192,
    "results": [
        {
            "start": 1240123748,
            "stop": 1240123866
        },
        {
            "start": 1240123868,
            "stop": 1240123986
        },
        {
            "start": 1240123988,
            "stop": 1240124106
        },
        {
            "start": 1240124108,
            "stop": 1240124226
        },
        {
            "start": 1240124228,
            "stop": 1240124346
        },
        {
            "start": 1240124348,
            "stop": 1240124464
        },
        {
            "start": 1240124465,
            "stop": 1240124586
        },
        {
            "start": 1240124588,
            "stop": 1240124706
        },
        {
            "start": 1240124708,
            "stop": 1240124826
        },
        {
            "start": 1240124828,
            "stop": 1240124946
        },
        {
            "start": 1240124948,
            "stop": 1240125066
        },
        {
            "start": 1240125068,
            "stop": 1240125186
        },
        {
            "start": 1240125188,
            "stop": 1240125306
        },
        {
            "start": 1240125308,
            "stop": 1240125426
        },
        {
            "start": 1240125428,
            "stop": 1240125546
        },
        {
            "start": 1240125548,
            "stop": 1240125666
        },
        {
            "start": 1240125668,
            "stop": 1240125786
        },
        {
            "start": 1240125788,
            "stop": 1240125906
        },
        {
            "start": 1240125908,
            "stop": 1240126026
        },
        {
            "start": 1240126028,
            "stop": 1240126146
        }
    ]
}