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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT3/segments?format=api&page=5006",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT3/segments?format=api&page=5004",
    "results_count": 106145,
    "results_per_page": 20,
    "num_pages": 5308,
    "page_number": 5005,
    "results": [
        {
            "start": 872268867,
            "stop": 872269069
        },
        {
            "start": 872269077,
            "stop": 872269214
        },
        {
            "start": 872276450,
            "stop": 872276476
        },
        {
            "start": 872276512,
            "stop": 872276519
        },
        {
            "start": 872276562,
            "stop": 872276576
        },
        {
            "start": 872276612,
            "stop": 872276655
        },
        {
            "start": 872276691,
            "stop": 872276747
        },
        {
            "start": 872276783,
            "stop": 872276843
        },
        {
            "start": 872276880,
            "stop": 872276983
        },
        {
            "start": 872277035,
            "stop": 872277355
        },
        {
            "start": 872277363,
            "stop": 872277413
        },
        {
            "start": 872277420,
            "stop": 872277422
        },
        {
            "start": 872277458,
            "stop": 872277491
        },
        {
            "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
        }
    ]
}