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=4000
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=4001",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT2/segments?format=api&page=3999",
    "results_count": 81402,
    "results_per_page": 20,
    "num_pages": 4071,
    "page_number": 4000,
    "results": [
        {
            "start": 874675484,
            "stop": 874675510
        },
        {
            "start": 874675512,
            "stop": 874675530
        },
        {
            "start": 874675531,
            "stop": 874675540
        },
        {
            "start": 874675541,
            "stop": 874675558
        },
        {
            "start": 874675560,
            "stop": 874675574
        },
        {
            "start": 874675575,
            "stop": 874675615
        },
        {
            "start": 874676095,
            "stop": 874676192
        },
        {
            "start": 874676193,
            "stop": 874676288
        },
        {
            "start": 874676289,
            "stop": 874676526
        },
        {
            "start": 874676527,
            "stop": 874676552
        },
        {
            "start": 874676553,
            "stop": 874676589
        },
        {
            "start": 874676592,
            "stop": 874676666
        },
        {
            "start": 874676667,
            "stop": 874676771
        },
        {
            "start": 874676772,
            "stop": 874676860
        },
        {
            "start": 874676861,
            "stop": 874676889
        },
        {
            "start": 874676890,
            "stop": 874676964
        },
        {
            "start": 874676967,
            "stop": 874677039
        },
        {
            "start": 874677040,
            "stop": 874677086
        },
        {
            "start": 874677089,
            "stop": 874677102
        },
        {
            "start": 874677103,
            "stop": 874677343
        }
    ]
}