Return the segments for a given timeline for a run.

Query parameters:

  • start: Initial GPS time of the desired GPS interval.
  • stop: Final GPS time of the desired GPS interval.
  • compact: Return a list of segment [start, stop] list.
GET /api/v2/runs/S5/timelines/H1_STOCH_CAT2_H1L1/segments?format=api&page=1124
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": null,
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_STOCH_CAT2_H1L1/segments?format=api&page=1123",
    "results_count": 22462,
    "results_per_page": 20,
    "num_pages": 1124,
    "page_number": 1124,
    "results": [
        {
            "start": 875229164,
            "stop": 875230244
        },
        {
            "start": 875230334,
            "stop": 875232014
        }
    ]
}