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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_HW/segments?format=api&page=90",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_HW/segments?format=api&page=88",
    "results_count": 2118,
    "results_per_page": 20,
    "num_pages": 106,
    "page_number": 89,
    "results": [
        {
            "start": 867806710,
            "stop": 867806846
        },
        {
            "start": 867820213,
            "stop": 867820357
        },
        {
            "start": 867833807,
            "stop": 867833934
        },
        {
            "start": 867867966,
            "stop": 867868103
        },
        {
            "start": 867879366,
            "stop": 867879493
        },
        {
            "start": 867887878,
            "stop": 867888085
        },
        {
            "start": 867895367,
            "stop": 867895503
        },
        {
            "start": 867901143,
            "stop": 867901286
        },
        {
            "start": 867907270,
            "stop": 867907406
        },
        {
            "start": 867915854,
            "stop": 867915982
        },
        {
            "start": 867925414,
            "stop": 867925558
        },
        {
            "start": 867941053,
            "stop": 867941262
        },
        {
            "start": 867949374,
            "stop": 867949517
        },
        {
            "start": 867968526,
            "stop": 867968669
        },
        {
            "start": 867985030,
            "stop": 867985167
        },
        {
            "start": 867994558,
            "stop": 867994703
        },
        {
            "start": 868008046,
            "stop": 868008183
        },
        {
            "start": 868032918,
            "stop": 868033063
        },
        {
            "start": 868088942,
            "stop": 868089069
        },
        {
            "start": 868156693,
            "stop": 868156829
        }
    ]
}