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

{
    "next": "https://gwosc.org/api/v2/runs/O2/timelines/H1_CBC_CAT3/segments?format=api&page=202",
    "previous": "https://gwosc.org/api/v2/runs/O2/timelines/H1_CBC_CAT3/segments?format=api&page=200",
    "results_count": 8301,
    "results_per_page": 20,
    "num_pages": 416,
    "page_number": 201,
    "results": [
        {
            "start": 1176969245,
            "stop": 1176969247
        },
        {
            "start": 1176969249,
            "stop": 1176969255
        },
        {
            "start": 1176969268,
            "stop": 1176969399
        },
        {
            "start": 1176969400,
            "stop": 1176969411
        },
        {
            "start": 1176969412,
            "stop": 1176969414
        },
        {
            "start": 1176969416,
            "stop": 1176969417
        },
        {
            "start": 1176969419,
            "stop": 1176969420
        },
        {
            "start": 1176969426,
            "stop": 1176969436
        },
        {
            "start": 1176969440,
            "stop": 1176969490
        },
        {
            "start": 1176969491,
            "stop": 1176969516
        },
        {
            "start": 1176969517,
            "stop": 1176969641
        },
        {
            "start": 1176969642,
            "stop": 1176969643
        },
        {
            "start": 1176969645,
            "stop": 1176969920
        },
        {
            "start": 1176969921,
            "stop": 1176969960
        },
        {
            "start": 1176969961,
            "stop": 1176970241
        },
        {
            "start": 1176970242,
            "stop": 1176970243
        },
        {
            "start": 1176970246,
            "stop": 1176970257
        },
        {
            "start": 1176970259,
            "stop": 1176970602
        },
        {
            "start": 1176970603,
            "stop": 1176970606
        },
        {
            "start": 1176970607,
            "stop": 1176970616
        }
    ]
}