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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=251",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=249",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 250,
    "results": [
        {
            "start": 856743290,
            "stop": 856745439
        },
        {
            "start": 856746382,
            "stop": 856778602
        },
        {
            "start": 856781630,
            "stop": 856804558
        },
        {
            "start": 856804674,
            "stop": 856806469
        },
        {
            "start": 856806550,
            "stop": 856808425
        },
        {
            "start": 856809489,
            "stop": 856817630
        },
        {
            "start": 856817756,
            "stop": 856822380
        },
        {
            "start": 856822472,
            "stop": 856826314
        },
        {
            "start": 856826725,
            "stop": 856827159
        },
        {
            "start": 856827513,
            "stop": 856876786
        },
        {
            "start": 856877562,
            "stop": 856900641
        },
        {
            "start": 856913978,
            "stop": 856922322
        },
        {
            "start": 856922622,
            "stop": 856928058
        },
        {
            "start": 856928358,
            "stop": 856986982
        },
        {
            "start": 856988561,
            "stop": 857007030
        },
        {
            "start": 857007412,
            "stop": 857007744
        },
        {
            "start": 857008094,
            "stop": 857022111
        },
        {
            "start": 857022383,
            "stop": 857094541
        },
        {
            "start": 857095537,
            "stop": 857131824
        },
        {
            "start": 857132145,
            "stop": 857132161
        }
    ]
}