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/L1_DATA/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/L1_DATA/segments?format=api&page=41",
    "results_count": 830,
    "results_per_page": 20,
    "num_pages": 42,
    "page_number": 42,
    "results": [
        {
            "start": 1187366372,
            "stop": 1187443322
        },
        {
            "start": 1187470778,
            "stop": 1187494760
        },
        {
            "start": 1187499245,
            "stop": 1187517063
        },
        {
            "start": 1187524296,
            "stop": 1187600980
        },
        {
            "start": 1187605724,
            "stop": 1187617289
        },
        {
            "start": 1187618772,
            "stop": 1187618816
        },
        {
            "start": 1187619107,
            "stop": 1187660674
        },
        {
            "start": 1187662235,
            "stop": 1187664891
        },
        {
            "start": 1187666523,
            "stop": 1187693287
        },
        {
            "start": 1187695573,
            "stop": 1187733618
        }
    ]
}