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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=51",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=49",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 50,
    "results": [
        {
            "start": 817257937,
            "stop": 817257946
        },
        {
            "start": 817257953,
            "stop": 817258850
        },
        {
            "start": 817258930,
            "stop": 817258987
        },
        {
            "start": 817258994,
            "stop": 817259150
        },
        {
            "start": 817259290,
            "stop": 817259617
        },
        {
            "start": 817259645,
            "stop": 817259884
        },
        {
            "start": 817259891,
            "stop": 817259901
        },
        {
            "start": 817259908,
            "stop": 817260284
        },
        {
            "start": 817260291,
            "stop": 817261046
        },
        {
            "start": 817261053,
            "stop": 817261161
        },
        {
            "start": 817261169,
            "stop": 817261265
        },
        {
            "start": 817261272,
            "stop": 817261538
        },
        {
            "start": 817261546,
            "stop": 817261654
        },
        {
            "start": 817261661,
            "stop": 817262054
        },
        {
            "start": 817262116,
            "stop": 817262124
        },
        {
            "start": 817262131,
            "stop": 817262660
        },
        {
            "start": 817262667,
            "stop": 817262827
        },
        {
            "start": 817262835,
            "stop": 817262865
        },
        {
            "start": 817262872,
            "stop": 817262988
        },
        {
            "start": 817263002,
            "stop": 817263069
        }
    ]
}