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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCLOW_CAT2/segments?format=api&page=112",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCLOW_CAT2/segments?format=api&page=110",
    "results_count": 15160,
    "results_per_page": 20,
    "num_pages": 758,
    "page_number": 111,
    "results": [
        {
            "start": 821499764,
            "stop": 821499779
        },
        {
            "start": 821499783,
            "stop": 821499797
        },
        {
            "start": 821499800,
            "stop": 821499801
        },
        {
            "start": 821499807,
            "stop": 821499824
        },
        {
            "start": 821499827,
            "stop": 821499843
        },
        {
            "start": 821499846,
            "stop": 821499870
        },
        {
            "start": 821499873,
            "stop": 821499918
        },
        {
            "start": 821499921,
            "stop": 821499958
        },
        {
            "start": 821499963,
            "stop": 821500009
        },
        {
            "start": 821500012,
            "stop": 821500042
        },
        {
            "start": 821500045,
            "stop": 821500080
        },
        {
            "start": 821500083,
            "stop": 821500094
        },
        {
            "start": 821500097,
            "stop": 821500173
        },
        {
            "start": 821500176,
            "stop": 821500219
        },
        {
            "start": 821500222,
            "stop": 821500274
        },
        {
            "start": 821500277,
            "stop": 821500278
        },
        {
            "start": 821500281,
            "stop": 821500296
        },
        {
            "start": 821500299,
            "stop": 821500339
        },
        {
            "start": 821500342,
            "stop": 821500360
        },
        {
            "start": 821500366,
            "stop": 821500402
        }
    ]
}