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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=123",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=121",
    "results_count": 168343,
    "results_per_page": 20,
    "num_pages": 8418,
    "page_number": 122,
    "results": [
        {
            "start": 816964562,
            "stop": 816964636
        },
        {
            "start": 816964705,
            "stop": 816964709
        },
        {
            "start": 816964839,
            "stop": 816964886
        },
        {
            "start": 816964907,
            "stop": 816964986
        },
        {
            "start": 816965009,
            "stop": 816965013
        },
        {
            "start": 816965080,
            "stop": 816965090
        },
        {
            "start": 816965138,
            "stop": 816965144
        },
        {
            "start": 816965280,
            "stop": 816965285
        },
        {
            "start": 816965305,
            "stop": 816965310
        },
        {
            "start": 816965370,
            "stop": 816965376
        },
        {
            "start": 816965460,
            "stop": 816965499
        },
        {
            "start": 816965520,
            "stop": 816965527
        },
        {
            "start": 816965572,
            "stop": 816965581
        },
        {
            "start": 816965770,
            "stop": 816965799
        },
        {
            "start": 816965919,
            "stop": 816965928
        },
        {
            "start": 816965978,
            "stop": 816965982
        },
        {
            "start": 816966028,
            "stop": 816966075
        },
        {
            "start": 816966096,
            "stop": 816966099
        },
        {
            "start": 816966177,
            "stop": 816966187
        },
        {
            "start": 816966223,
            "stop": 816966250
        }
    ]
}