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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=60",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=58",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 59,
    "results": [
        {
            "start": 822806257,
            "stop": 822806414
        },
        {
            "start": 822806966,
            "stop": 822807090
        },
        {
            "start": 822815950,
            "stop": 822816070
        },
        {
            "start": 822822257,
            "stop": 822822342
        },
        {
            "start": 822822393,
            "stop": 822822634
        },
        {
            "start": 822822677,
            "stop": 822822700
        },
        {
            "start": 822822796,
            "stop": 822822867
        },
        {
            "start": 822822994,
            "stop": 822823001
        },
        {
            "start": 822823138,
            "stop": 822823345
        },
        {
            "start": 822823664,
            "stop": 822824127
        },
        {
            "start": 822824192,
            "stop": 822825555
        },
        {
            "start": 822825603,
            "stop": 822825657
        },
        {
            "start": 822825696,
            "stop": 822826224
        },
        {
            "start": 822826264,
            "stop": 822826398
        },
        {
            "start": 822826434,
            "stop": 822826737
        },
        {
            "start": 822826815,
            "stop": 822826932
        },
        {
            "start": 822827105,
            "stop": 822827193
        },
        {
            "start": 822827282,
            "stop": 822827341
        },
        {
            "start": 822848880,
            "stop": 822848953
        },
        {
            "start": 822849186,
            "stop": 822849476
        }
    ]
}