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

{
    "next": "https://gwosc.org/api/v2/runs/O1/timelines/H1_BURST_CAT3/segments?format=api&page=112",
    "previous": "https://gwosc.org/api/v2/runs/O1/timelines/H1_BURST_CAT3/segments?format=api&page=110",
    "results_count": 106837,
    "results_per_page": 20,
    "num_pages": 5342,
    "page_number": 111,
    "results": [
        {
            "start": 1126619919,
            "stop": 1126619968
        },
        {
            "start": 1126619969,
            "stop": 1126620220
        },
        {
            "start": 1126620221,
            "stop": 1126620524
        },
        {
            "start": 1126620526,
            "stop": 1126620598
        },
        {
            "start": 1126620599,
            "stop": 1126620827
        },
        {
            "start": 1126620828,
            "stop": 1126621138
        },
        {
            "start": 1126621139,
            "stop": 1126621198
        },
        {
            "start": 1126621199,
            "stop": 1126621447
        },
        {
            "start": 1126621449,
            "stop": 1126621744
        },
        {
            "start": 1126621745,
            "stop": 1126622053
        },
        {
            "start": 1126622054,
            "stop": 1126622304
        },
        {
            "start": 1126622311,
            "stop": 1126622367
        },
        {
            "start": 1126622368,
            "stop": 1126622421
        },
        {
            "start": 1126622423,
            "stop": 1126622638
        },
        {
            "start": 1126622639,
            "stop": 1126622959
        },
        {
            "start": 1126622960,
            "stop": 1126623282
        },
        {
            "start": 1126623283,
            "stop": 1126623578
        },
        {
            "start": 1126623579,
            "stop": 1126623748
        },
        {
            "start": 1126623749,
            "stop": 1126623866
        },
        {
            "start": 1126623868,
            "stop": 1126624094
        }
    ]
}