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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCHIGH_CAT3/segments?format=api&page=151",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCHIGH_CAT3/segments?format=api&page=149",
    "results_count": 104500,
    "results_per_page": 20,
    "num_pages": 5225,
    "page_number": 150,
    "results": [
        {
            "start": 819641344,
            "stop": 819656489
        },
        {
            "start": 819658602,
            "stop": 819659170
        },
        {
            "start": 819659173,
            "stop": 819661171
        },
        {
            "start": 819661649,
            "stop": 819664587
        },
        {
            "start": 819664590,
            "stop": 819666043
        },
        {
            "start": 819666060,
            "stop": 819667983
        },
        {
            "start": 819667986,
            "stop": 819669798
        },
        {
            "start": 819669801,
            "stop": 819671177
        },
        {
            "start": 819671180,
            "stop": 819673737
        },
        {
            "start": 819673754,
            "stop": 819676483
        },
        {
            "start": 819676486,
            "stop": 819676759
        },
        {
            "start": 819676762,
            "stop": 819677444
        },
        {
            "start": 819677461,
            "stop": 819678035
        },
        {
            "start": 819678038,
            "stop": 819678998
        },
        {
            "start": 819679001,
            "stop": 819679861
        },
        {
            "start": 819679878,
            "stop": 819682985
        },
        {
            "start": 819682988,
            "stop": 819687419
        },
        {
            "start": 819687464,
            "stop": 819690547
        },
        {
            "start": 819690550,
            "stop": 819694102
        },
        {
            "start": 819694119,
            "stop": 819696569
        }
    ]
}