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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=2930",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=2928",
    "results_count": 66335,
    "results_per_page": 20,
    "num_pages": 3317,
    "page_number": 2929,
    "results": [
        {
            "start": 858963481,
            "stop": 858963785
        },
        {
            "start": 858965510,
            "stop": 858966143
        },
        {
            "start": 858968477,
            "stop": 858969805
        },
        {
            "start": 858969810,
            "stop": 858970410
        },
        {
            "start": 858970470,
            "stop": 858970472
        },
        {
            "start": 858970634,
            "stop": 858971772
        },
        {
            "start": 858971775,
            "stop": 858972840
        },
        {
            "start": 858972900,
            "stop": 858973516
        },
        {
            "start": 858974969,
            "stop": 858976440
        },
        {
            "start": 858976500,
            "stop": 858979260
        },
        {
            "start": 858979320,
            "stop": 858981720
        },
        {
            "start": 858981840,
            "stop": 858984780
        },
        {
            "start": 858984840,
            "stop": 858985446
        },
        {
            "start": 858986760,
            "stop": 858991544
        },
        {
            "start": 858991845,
            "stop": 858992984
        },
        {
            "start": 858993165,
            "stop": 858994604
        },
        {
            "start": 858994845,
            "stop": 858996704
        },
        {
            "start": 858996885,
            "stop": 858998920
        },
        {
            "start": 858998925,
            "stop": 859003904
        },
        {
            "start": 859004085,
            "stop": 859004144
        }
    ]
}