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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT2/segments?format=api&page=4000",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT2/segments?format=api&page=3998",
    "results_count": 81402,
    "results_per_page": 20,
    "num_pages": 4071,
    "page_number": 3999,
    "results": [
        {
            "start": 874672304,
            "stop": 874673190
        },
        {
            "start": 874673194,
            "stop": 874673195
        },
        {
            "start": 874673198,
            "stop": 874673202
        },
        {
            "start": 874673208,
            "stop": 874673430
        },
        {
            "start": 874673433,
            "stop": 874673546
        },
        {
            "start": 874673547,
            "stop": 874673932
        },
        {
            "start": 874673933,
            "stop": 874674160
        },
        {
            "start": 874674161,
            "stop": 874674304
        },
        {
            "start": 874674306,
            "stop": 874674715
        },
        {
            "start": 874674716,
            "stop": 874674776
        },
        {
            "start": 874674777,
            "stop": 874674784
        },
        {
            "start": 874674785,
            "stop": 874674835
        },
        {
            "start": 874674836,
            "stop": 874674873
        },
        {
            "start": 874674874,
            "stop": 874674945
        },
        {
            "start": 874674949,
            "stop": 874674952
        },
        {
            "start": 874674953,
            "stop": 874674977
        },
        {
            "start": 874674978,
            "stop": 874675148
        },
        {
            "start": 874675149,
            "stop": 874675185
        },
        {
            "start": 874675186,
            "stop": 874675479
        },
        {
            "start": 874675480,
            "stop": 874675482
        }
    ]
}