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=9989
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=9990",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=9988",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 9989,
    "results": [
        {
            "start": 872141384,
            "stop": 872141796
        },
        {
            "start": 872141813,
            "stop": 872144167
        },
        {
            "start": 872144184,
            "stop": 872145261
        },
        {
            "start": 872145298,
            "stop": 872145450
        },
        {
            "start": 872145486,
            "stop": 872145551
        },
        {
            "start": 872145587,
            "stop": 872145857
        },
        {
            "start": 872145893,
            "stop": 872146090
        },
        {
            "start": 872146127,
            "stop": 872146320
        },
        {
            "start": 872146356,
            "stop": 872146363
        },
        {
            "start": 872146404,
            "stop": 872146407
        },
        {
            "start": 872146531,
            "stop": 872146532
        },
        {
            "start": 872146568,
            "stop": 872146610
        },
        {
            "start": 872146727,
            "stop": 872146763
        },
        {
            "start": 872146861,
            "stop": 872146899
        },
        {
            "start": 872146942,
            "stop": 872146960
        },
        {
            "start": 872147030,
            "stop": 872147039
        },
        {
            "start": 872147219,
            "stop": 872147220
        },
        {
            "start": 872147262,
            "stop": 872147377
        },
        {
            "start": 872147616,
            "stop": 872147682
        },
        {
            "start": 872147727,
            "stop": 872147782
        }
    ]
}