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=56
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=57",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=55",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 56,
    "results": [
        {
            "start": 822626834,
            "stop": 822632796
        },
        {
            "start": 822633384,
            "stop": 822634169
        },
        {
            "start": 822634279,
            "stop": 822634479
        },
        {
            "start": 822637533,
            "stop": 822638013
        },
        {
            "start": 822638089,
            "stop": 822638151
        },
        {
            "start": 822638242,
            "stop": 822638483
        },
        {
            "start": 822638783,
            "stop": 822638953
        },
        {
            "start": 822639253,
            "stop": 822639864
        },
        {
            "start": 822639903,
            "stop": 822640585
        },
        {
            "start": 822640749,
            "stop": 822641690
        },
        {
            "start": 822641757,
            "stop": 822651045
        },
        {
            "start": 822651394,
            "stop": 822651468
        },
        {
            "start": 822651562,
            "stop": 822654021
        },
        {
            "start": 822654321,
            "stop": 822664729
        },
        {
            "start": 822665221,
            "stop": 822665888
        },
        {
            "start": 822665992,
            "stop": 822666011
        },
        {
            "start": 822666044,
            "stop": 822666106
        },
        {
            "start": 822666136,
            "stop": 822666180
        },
        {
            "start": 822666212,
            "stop": 822666307
        },
        {
            "start": 822666417,
            "stop": 822666472
        }
    ]
}