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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_DATA/segments?format=api&page=144",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_DATA/segments?format=api&page=142",
    "results_count": 3818,
    "results_per_page": 20,
    "num_pages": 191,
    "page_number": 143,
    "results": [
        {
            "start": 856724871,
            "stop": 856725857
        },
        {
            "start": 856727131,
            "stop": 856727506
        },
        {
            "start": 856727592,
            "stop": 856728141
        },
        {
            "start": 856728381,
            "stop": 856728401
        },
        {
            "start": 856728450,
            "stop": 856728792
        },
        {
            "start": 856729099,
            "stop": 856729680
        },
        {
            "start": 856729731,
            "stop": 856731285
        },
        {
            "start": 856740305,
            "stop": 856740379
        },
        {
            "start": 856743290,
            "stop": 856778896
        },
        {
            "start": 856781630,
            "stop": 856804558
        },
        {
            "start": 856804674,
            "stop": 856806469
        },
        {
            "start": 856806550,
            "stop": 856808425
        },
        {
            "start": 856809489,
            "stop": 856817630
        },
        {
            "start": 856817756,
            "stop": 856822380
        },
        {
            "start": 856822472,
            "stop": 856876856
        },
        {
            "start": 856877562,
            "stop": 856900938
        },
        {
            "start": 856913978,
            "stop": 856987278
        },
        {
            "start": 856988561,
            "stop": 857022111
        },
        {
            "start": 857022383,
            "stop": 857094675
        },
        {
            "start": 857095537,
            "stop": 857162988
        }
    ]
}