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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=322",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=320",
    "results_count": 182857,
    "results_per_page": 20,
    "num_pages": 9143,
    "page_number": 321,
    "results": [
        {
            "start": 818618813,
            "stop": 818618844
        },
        {
            "start": 818618864,
            "stop": 818618909
        },
        {
            "start": 818618932,
            "stop": 818618945
        },
        {
            "start": 818618966,
            "stop": 818618978
        },
        {
            "start": 818618997,
            "stop": 818619021
        },
        {
            "start": 818619053,
            "stop": 818619087
        },
        {
            "start": 818619117,
            "stop": 818619144
        },
        {
            "start": 818619185,
            "stop": 818619218
        },
        {
            "start": 818619249,
            "stop": 818619396
        },
        {
            "start": 818619429,
            "stop": 818619438
        },
        {
            "start": 818619471,
            "stop": 818619484
        },
        {
            "start": 818619554,
            "stop": 818619574
        },
        {
            "start": 818619622,
            "stop": 818619644
        },
        {
            "start": 818619671,
            "stop": 818619728
        },
        {
            "start": 818619819,
            "stop": 818619897
        },
        {
            "start": 818619956,
            "stop": 818619962
        },
        {
            "start": 818620033,
            "stop": 818620093
        },
        {
            "start": 818620151,
            "stop": 818620206
        },
        {
            "start": 818620254,
            "stop": 818620275
        },
        {
            "start": 818620294,
            "stop": 818620306
        }
    ]
}