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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=65",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=63",
    "results_count": 143782,
    "results_per_page": 20,
    "num_pages": 7190,
    "page_number": 64,
    "results": [
        {
            "start": 817294734,
            "stop": 817294743
        },
        {
            "start": 817294837,
            "stop": 817294859
        },
        {
            "start": 817294882,
            "stop": 817294914
        },
        {
            "start": 817294917,
            "stop": 817294922
        },
        {
            "start": 817299137,
            "stop": 817299147
        },
        {
            "start": 817299155,
            "stop": 817299167
        },
        {
            "start": 817299171,
            "stop": 817299220
        },
        {
            "start": 817299226,
            "stop": 817299256
        },
        {
            "start": 817299259,
            "stop": 817299450
        },
        {
            "start": 817299453,
            "stop": 817299533
        },
        {
            "start": 817299537,
            "stop": 817299553
        },
        {
            "start": 817303237,
            "stop": 817303310
        },
        {
            "start": 817303313,
            "stop": 817303362
        },
        {
            "start": 817303366,
            "stop": 817303449
        },
        {
            "start": 817303452,
            "stop": 817303504
        },
        {
            "start": 817303510,
            "stop": 817303669
        },
        {
            "start": 817303672,
            "stop": 817303720
        },
        {
            "start": 817303723,
            "stop": 817303771
        },
        {
            "start": 817303774,
            "stop": 817303887
        },
        {
            "start": 817303892,
            "stop": 817303938
        }
    ]
}