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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=102",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=100",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 101,
    "results": [
        {
            "start": 819755886,
            "stop": 819755925
        },
        {
            "start": 819755932,
            "stop": 819756041
        },
        {
            "start": 819756048,
            "stop": 819756104
        },
        {
            "start": 819756111,
            "stop": 819756306
        },
        {
            "start": 819757726,
            "stop": 819757730
        },
        {
            "start": 819757810,
            "stop": 819757919
        },
        {
            "start": 819757927,
            "stop": 819757960
        },
        {
            "start": 819757967,
            "stop": 819758129
        },
        {
            "start": 819758137,
            "stop": 819758209
        },
        {
            "start": 819758216,
            "stop": 819758611
        },
        {
            "start": 819758619,
            "stop": 819758892
        },
        {
            "start": 819758900,
            "stop": 819758949
        },
        {
            "start": 819758956,
            "stop": 819759830
        },
        {
            "start": 819759910,
            "stop": 819760096
        },
        {
            "start": 819760104,
            "stop": 819760333
        },
        {
            "start": 819761763,
            "stop": 819762963
        },
        {
            "start": 819762970,
            "stop": 819763029
        },
        {
            "start": 819763036,
            "stop": 819763482
        },
        {
            "start": 819763489,
            "stop": 819763532
        },
        {
            "start": 819763539,
            "stop": 819763746
        }
    ]
}