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

{
    "next": null,
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW/segments?format=api&page=8",
    "results_count": 170,
    "results_per_page": 20,
    "num_pages": 9,
    "page_number": 9,
    "results": [
        {
            "start": 869944002,
            "stop": 871747264
        },
        {
            "start": 871749824,
            "stop": 871754824
        },
        {
            "start": 871755118,
            "stop": 872805664
        },
        {
            "start": 872808344,
            "stop": 873917939
        },
        {
            "start": 873918119,
            "stop": 874177193
        },
        {
            "start": 874177319,
            "stop": 874178018
        },
        {
            "start": 874178519,
            "stop": 874178615
        },
        {
            "start": 874179118,
            "stop": 874179273
        },
        {
            "start": 874179719,
            "stop": 874789264
        },
        {
            "start": 874792919,
            "stop": 875232014
        }
    ]
}