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=99
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=100",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=98",
    "results_count": 143782,
    "results_per_page": 20,
    "num_pages": 7190,
    "page_number": 99,
    "results": [
        {
            "start": 817812330,
            "stop": 817812357
        },
        {
            "start": 817812362,
            "stop": 817812759
        },
        {
            "start": 817812763,
            "stop": 817812770
        },
        {
            "start": 817812773,
            "stop": 817812799
        },
        {
            "start": 817812802,
            "stop": 817812846
        },
        {
            "start": 817812849,
            "stop": 817812900
        },
        {
            "start": 817812960,
            "stop": 817812968
        },
        {
            "start": 817812971,
            "stop": 817812978
        },
        {
            "start": 817812981,
            "stop": 817812997
        },
        {
            "start": 817813000,
            "stop": 817813005
        },
        {
            "start": 817813008,
            "stop": 817813062
        },
        {
            "start": 817813065,
            "stop": 817813080
        },
        {
            "start": 817813140,
            "stop": 817813263
        },
        {
            "start": 817813266,
            "stop": 817813329
        },
        {
            "start": 817813332,
            "stop": 817813379
        },
        {
            "start": 817813383,
            "stop": 817813411
        },
        {
            "start": 817813416,
            "stop": 817813419
        },
        {
            "start": 817813423,
            "stop": 817813510
        },
        {
            "start": 817813514,
            "stop": 817813516
        },
        {
            "start": 817813523,
            "stop": 817813553
        }
    ]
}