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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCLOW_CAT3/segments?format=api&page=5004",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCLOW_CAT3/segments?format=api&page=5002",
    "results_count": 105470,
    "results_per_page": 20,
    "num_pages": 5274,
    "page_number": 5003,
    "results": [
        {
            "start": 874526141,
            "stop": 874526191
        },
        {
            "start": 874529312,
            "stop": 874530087
        },
        {
            "start": 874535621,
            "stop": 874536171
        },
        {
            "start": 874538124,
            "stop": 874540526
        },
        {
            "start": 874540533,
            "stop": 874540916
        },
        {
            "start": 874540923,
            "stop": 874541099
        },
        {
            "start": 874541106,
            "stop": 874541163
        },
        {
            "start": 874541171,
            "stop": 874541457
        },
        {
            "start": 874541465,
            "stop": 874541475
        },
        {
            "start": 874541482,
            "stop": 874541490
        },
        {
            "start": 874541497,
            "stop": 874541617
        },
        {
            "start": 874541625,
            "stop": 874541759
        },
        {
            "start": 874541766,
            "stop": 874541865
        },
        {
            "start": 874541872,
            "stop": 874542004
        },
        {
            "start": 874542011,
            "stop": 874542018
        },
        {
            "start": 874542025,
            "stop": 874542122
        },
        {
            "start": 874542129,
            "stop": 874542141
        },
        {
            "start": 874542148,
            "stop": 874542215
        },
        {
            "start": 874542222,
            "stop": 874542255
        },
        {
            "start": 874542262,
            "stop": 874542386
        }
    ]
}