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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=181",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=179",
    "results_count": 182857,
    "results_per_page": 20,
    "num_pages": 9143,
    "page_number": 180,
    "results": [
        {
            "start": 817388370,
            "stop": 817389714
        },
        {
            "start": 817389743,
            "stop": 817389821
        },
        {
            "start": 817389840,
            "stop": 817389994
        },
        {
            "start": 817390015,
            "stop": 817390107
        },
        {
            "start": 817390128,
            "stop": 817390276
        },
        {
            "start": 817390295,
            "stop": 817390425
        },
        {
            "start": 817390428,
            "stop": 817390769
        },
        {
            "start": 817390788,
            "stop": 817391714
        },
        {
            "start": 817391733,
            "stop": 817391784
        },
        {
            "start": 817391803,
            "stop": 817391949
        },
        {
            "start": 817391976,
            "stop": 817392073
        },
        {
            "start": 817392092,
            "stop": 817392282
        },
        {
            "start": 817392301,
            "stop": 817392788
        },
        {
            "start": 817392805,
            "stop": 817392855
        },
        {
            "start": 817392899,
            "stop": 817392977
        },
        {
            "start": 817392996,
            "stop": 817393285
        },
        {
            "start": 817393304,
            "stop": 817393380
        },
        {
            "start": 817393399,
            "stop": 817394090
        },
        {
            "start": 817394109,
            "stop": 817394253
        },
        {
            "start": 817394272,
            "stop": 817394389
        }
    ]
}