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=234
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=235",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=233",
    "results_count": 182857,
    "results_per_page": 20,
    "num_pages": 9143,
    "page_number": 234,
    "results": [
        {
            "start": 817806972,
            "stop": 817806999
        },
        {
            "start": 817807035,
            "stop": 817807041
        },
        {
            "start": 817807085,
            "stop": 817807098
        },
        {
            "start": 817807194,
            "stop": 817807206
        },
        {
            "start": 817807247,
            "stop": 817807278
        },
        {
            "start": 817807313,
            "stop": 817807325
        },
        {
            "start": 817807378,
            "stop": 817807379
        },
        {
            "start": 817807487,
            "stop": 817807492
        },
        {
            "start": 817807525,
            "stop": 817807537
        },
        {
            "start": 817807621,
            "stop": 817807667
        },
        {
            "start": 817807741,
            "stop": 817807746
        },
        {
            "start": 817807784,
            "stop": 817807792
        },
        {
            "start": 817807904,
            "stop": 817807924
        },
        {
            "start": 817807945,
            "stop": 817807960
        },
        {
            "start": 817807979,
            "stop": 817807995
        },
        {
            "start": 817808019,
            "stop": 817808030
        },
        {
            "start": 817808050,
            "stop": 817808132
        },
        {
            "start": 817808135,
            "stop": 817808157
        },
        {
            "start": 817808178,
            "stop": 817808211
        },
        {
            "start": 817808230,
            "stop": 817808267
        }
    ]
}