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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=251",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=249",
    "results_count": 168343,
    "results_per_page": 20,
    "num_pages": 8418,
    "page_number": 250,
    "results": [
        {
            "start": 817877671,
            "stop": 817877674
        },
        {
            "start": 817877681,
            "stop": 817877848
        },
        {
            "start": 817877851,
            "stop": 817877880
        },
        {
            "start": 817877900,
            "stop": 817877981
        },
        {
            "start": 817877985,
            "stop": 817878010
        },
        {
            "start": 817878038,
            "stop": 817878064
        },
        {
            "start": 817878082,
            "stop": 817878141
        },
        {
            "start": 817878159,
            "stop": 817878169
        },
        {
            "start": 817878186,
            "stop": 817878196
        },
        {
            "start": 817878201,
            "stop": 817878211
        },
        {
            "start": 817878234,
            "stop": 817878241
        },
        {
            "start": 817878244,
            "stop": 817878291
        },
        {
            "start": 817878318,
            "stop": 817878355
        },
        {
            "start": 817878372,
            "stop": 817878373
        },
        {
            "start": 817878390,
            "stop": 817878491
        },
        {
            "start": 817878510,
            "stop": 817878550
        },
        {
            "start": 817878555,
            "stop": 817878625
        },
        {
            "start": 817878645,
            "stop": 817878676
        },
        {
            "start": 817878693,
            "stop": 817878708
        },
        {
            "start": 817878730,
            "stop": 817878733
        }
    ]
}