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

{
    "next": null,
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_DATA/segments?format=api&page=28",
    "results_count": 568,
    "results_per_page": 20,
    "num_pages": 29,
    "page_number": 29,
    "results": [
        {
            "start": 1389112331,
            "stop": 1389117252
        },
        {
            "start": 1389117500,
            "stop": 1389121773
        },
        {
            "start": 1389226225,
            "stop": 1389233758
        },
        {
            "start": 1389237385,
            "stop": 1389276449
        },
        {
            "start": 1389280675,
            "stop": 1389316580
        },
        {
            "start": 1389323131,
            "stop": 1389372392
        },
        {
            "start": 1389377825,
            "stop": 1389391848
        },
        {
            "start": 1389399868,
            "stop": 1389428351
        }
    ]
}