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=123
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=124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=122",
    "results_count": 143782,
    "results_per_page": 20,
    "num_pages": 7190,
    "page_number": 123,
    "results": [
        {
            "start": 817870850,
            "stop": 817870861
        },
        {
            "start": 817870865,
            "stop": 817870872
        },
        {
            "start": 817870880,
            "stop": 817870922
        },
        {
            "start": 817870926,
            "stop": 817870941
        },
        {
            "start": 817870947,
            "stop": 817870954
        },
        {
            "start": 817870957,
            "stop": 817870964
        },
        {
            "start": 817870967,
            "stop": 817870968
        },
        {
            "start": 817870975,
            "stop": 817871001
        },
        {
            "start": 817871004,
            "stop": 817871014
        },
        {
            "start": 817871017,
            "stop": 817871021
        },
        {
            "start": 817871024,
            "stop": 817871029
        },
        {
            "start": 817871033,
            "stop": 817871034
        },
        {
            "start": 817871039,
            "stop": 817871057
        },
        {
            "start": 817871060,
            "stop": 817871099
        },
        {
            "start": 817871102,
            "stop": 817871146
        },
        {
            "start": 817871149,
            "stop": 817871169
        },
        {
            "start": 817871172,
            "stop": 817871173
        },
        {
            "start": 817871176,
            "stop": 817871180
        },
        {
            "start": 817871183,
            "stop": 817871225
        },
        {
            "start": 817871228,
            "stop": 817871231
        }
    ]
}