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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT1/segments?format=api&page=51",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT1/segments?format=api&page=49",
    "results_count": 5354,
    "results_per_page": 20,
    "num_pages": 268,
    "page_number": 50,
    "results": [
        {
            "start": 821679190,
            "stop": 821679384
        },
        {
            "start": 821679386,
            "stop": 821679394
        },
        {
            "start": 821679397,
            "stop": 821679889
        },
        {
            "start": 821679891,
            "stop": 821680928
        },
        {
            "start": 821680930,
            "stop": 821681249
        },
        {
            "start": 821681251,
            "stop": 821681304
        },
        {
            "start": 821682259,
            "stop": 821682291
        },
        {
            "start": 821682293,
            "stop": 821682313
        },
        {
            "start": 821682315,
            "stop": 821682952
        },
        {
            "start": 821682954,
            "stop": 821683476
        },
        {
            "start": 821683478,
            "stop": 821684146
        },
        {
            "start": 821684148,
            "stop": 821684187
        },
        {
            "start": 821684189,
            "stop": 821684190
        },
        {
            "start": 821684192,
            "stop": 821684197
        },
        {
            "start": 821684200,
            "stop": 821684204
        },
        {
            "start": 821684205,
            "stop": 821684219
        },
        {
            "start": 821684221,
            "stop": 821684394
        },
        {
            "start": 821684957,
            "stop": 821685492
        },
        {
            "start": 821685494,
            "stop": 821685645
        },
        {
            "start": 821685646,
            "stop": 821686120
        }
    ]
}