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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT3/segments?format=api&page=151",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT3/segments?format=api&page=149",
    "results_count": 119313,
    "results_per_page": 20,
    "num_pages": 5966,
    "page_number": 150,
    "results": [
        {
            "start": 819841217,
            "stop": 819841253
        },
        {
            "start": 819841256,
            "stop": 819841605
        },
        {
            "start": 819841608,
            "stop": 819842368
        },
        {
            "start": 819842371,
            "stop": 819842563
        },
        {
            "start": 819842963,
            "stop": 819843364
        },
        {
            "start": 819843367,
            "stop": 819843770
        },
        {
            "start": 819843773,
            "stop": 819843949
        },
        {
            "start": 819843952,
            "stop": 819844085
        },
        {
            "start": 819844088,
            "stop": 819844293
        },
        {
            "start": 819844297,
            "stop": 819844762
        },
        {
            "start": 819844765,
            "stop": 819845134
        },
        {
            "start": 819845137,
            "stop": 819845167
        },
        {
            "start": 819845170,
            "stop": 819845353
        },
        {
            "start": 819845357,
            "stop": 819845805
        },
        {
            "start": 819845809,
            "stop": 819846298
        },
        {
            "start": 819846302,
            "stop": 819846331
        },
        {
            "start": 819846334,
            "stop": 819846711
        },
        {
            "start": 819846714,
            "stop": 819846744
        },
        {
            "start": 819846747,
            "stop": 819847132
        },
        {
            "start": 819847135,
            "stop": 819847149
        }
    ]
}