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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT2/segments?format=api&page=778",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT2/segments?format=api&page=776",
    "results_count": 17965,
    "results_per_page": 20,
    "num_pages": 899,
    "page_number": 777,
    "results": [
        {
            "start": 957470839,
            "stop": 957471051
        },
        {
            "start": 957471057,
            "stop": 957471127
        },
        {
            "start": 957472306,
            "stop": 957473362
        },
        {
            "start": 957473368,
            "stop": 957473528
        },
        {
            "start": 957473534,
            "stop": 957473800
        },
        {
            "start": 957473806,
            "stop": 957473882
        },
        {
            "start": 957473888,
            "stop": 957473957
        },
        {
            "start": 957473963,
            "stop": 957474206
        },
        {
            "start": 957474212,
            "stop": 957474876
        },
        {
            "start": 957474882,
            "stop": 957475149
        },
        {
            "start": 957475154,
            "stop": 957476265
        },
        {
            "start": 957476271,
            "stop": 957476284
        },
        {
            "start": 957476290,
            "stop": 957476530
        },
        {
            "start": 957476536,
            "stop": 957477169
        },
        {
            "start": 957477176,
            "stop": 957477223
        },
        {
            "start": 957477229,
            "stop": 957478157
        },
        {
            "start": 957478163,
            "stop": 957478682
        },
        {
            "start": 957478688,
            "stop": 957478900
        },
        {
            "start": 957478906,
            "stop": 957479155
        },
        {
            "start": 957479161,
            "stop": 957479288
        }
    ]
}