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=14
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=15",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=13",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 14,
    "results": [
        {
            "start": 817247901,
            "stop": 817252428
        },
        {
            "start": 817255379,
            "stop": 817257924
        },
        {
            "start": 817257927,
            "stop": 817259618
        },
        {
            "start": 817259620,
            "stop": 817262054
        },
        {
            "start": 817262116,
            "stop": 817267808
        },
        {
            "start": 817267809,
            "stop": 817267838
        },
        {
            "start": 817267934,
            "stop": 817268022
        },
        {
            "start": 817268164,
            "stop": 817269702
        },
        {
            "start": 817269705,
            "stop": 817275416
        },
        {
            "start": 817276762,
            "stop": 817278124
        },
        {
            "start": 817278127,
            "stop": 817291160
        },
        {
            "start": 817291161,
            "stop": 817291183
        },
        {
            "start": 817291895,
            "stop": 817301675
        },
        {
            "start": 817301678,
            "stop": 817302959
        },
        {
            "start": 817302962,
            "stop": 817312591
        },
        {
            "start": 817314125,
            "stop": 817314489
        },
        {
            "start": 817314490,
            "stop": 817314519
        },
        {
            "start": 817334047,
            "stop": 817334259
        },
        {
            "start": 817335553,
            "stop": 817340717
        },
        {
            "start": 817343130,
            "stop": 817347002
        }
    ]
}