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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=112",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=110",
    "results_count": 143782,
    "results_per_page": 20,
    "num_pages": 7190,
    "page_number": 111,
    "results": [
        {
            "start": 817859768,
            "stop": 817859800
        },
        {
            "start": 817859804,
            "stop": 817859806
        },
        {
            "start": 817859809,
            "stop": 817859851
        },
        {
            "start": 817859854,
            "stop": 817859855
        },
        {
            "start": 817859858,
            "stop": 817859893
        },
        {
            "start": 817859897,
            "stop": 817859910
        },
        {
            "start": 817859914,
            "stop": 817859943
        },
        {
            "start": 817859947,
            "stop": 817859961
        },
        {
            "start": 817859974,
            "stop": 817860019
        },
        {
            "start": 817860022,
            "stop": 817860033
        },
        {
            "start": 817860036,
            "stop": 817860038
        },
        {
            "start": 817860051,
            "stop": 817860052
        },
        {
            "start": 817860055,
            "stop": 817860069
        },
        {
            "start": 817860072,
            "stop": 817860103
        },
        {
            "start": 817860106,
            "stop": 817860130
        },
        {
            "start": 817860134,
            "stop": 817860136
        },
        {
            "start": 817860140,
            "stop": 817860157
        },
        {
            "start": 817860160,
            "stop": 817860173
        },
        {
            "start": 817860186,
            "stop": 817860189
        },
        {
            "start": 817860192,
            "stop": 817860235
        }
    ]
}