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

{
    "next": null,
    "previous": "https://gwosc.org/api/v2/runs/O2/timelines/H1_BURST_CAT1/segments?format=api&page=41",
    "results_count": 828,
    "results_per_page": 20,
    "num_pages": 42,
    "page_number": 42,
    "results": [
        {
            "start": 1187605759,
            "stop": 1187605809
        },
        {
            "start": 1187606124,
            "stop": 1187606810
        },
        {
            "start": 1187609753,
            "stop": 1187619133
        },
        {
            "start": 1187619155,
            "stop": 1187627224
        },
        {
            "start": 1187634944,
            "stop": 1187651493
        },
        {
            "start": 1187652925,
            "stop": 1187656721
        },
        {
            "start": 1187681297,
            "stop": 1187681350
        },
        {
            "start": 1187681366,
            "stop": 1187733618
        }
    ]
}