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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10010",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10008",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 10009,
    "results": [
        {
            "start": 872276783,
            "stop": 872276843
        },
        {
            "start": 872276880,
            "stop": 872276983
        },
        {
            "start": 872277035,
            "stop": 872277180
        },
        {
            "start": 872277240,
            "stop": 872277355
        },
        {
            "start": 872277363,
            "stop": 872277401
        },
        {
            "start": 872277549,
            "stop": 872277720
        },
        {
            "start": 872277756,
            "stop": 872277765
        },
        {
            "start": 872277799,
            "stop": 872277948
        },
        {
            "start": 872277956,
            "stop": 872277971
        },
        {
            "start": 872277978,
            "stop": 872278092
        },
        {
            "start": 872278099,
            "stop": 872278708
        },
        {
            "start": 872278744,
            "stop": 872278918
        },
        {
            "start": 872278935,
            "stop": 872279394
        },
        {
            "start": 872279429,
            "stop": 872279431
        },
        {
            "start": 872279438,
            "stop": 872279542
        },
        {
            "start": 872279576,
            "stop": 872279599
        },
        {
            "start": 872279634,
            "stop": 872279646
        },
        {
            "start": 872279653,
            "stop": 872279707
        },
        {
            "start": 872279715,
            "stop": 872280830
        },
        {
            "start": 872280837,
            "stop": 872280974
        }
    ]
}