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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/H1_BURST_CAT3/segments?format=api&page=402",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/H1_BURST_CAT3/segments?format=api&page=400",
    "results_count": 75537,
    "results_per_page": 20,
    "num_pages": 3777,
    "page_number": 401,
    "results": [
        {
            "start": 932631264,
            "stop": 932631292
        },
        {
            "start": 932631293,
            "stop": 932631326
        },
        {
            "start": 932631327,
            "stop": 932631487
        },
        {
            "start": 932631488,
            "stop": 932631502
        },
        {
            "start": 932631503,
            "stop": 932631538
        },
        {
            "start": 932631539,
            "stop": 932631788
        },
        {
            "start": 932631789,
            "stop": 932632058
        },
        {
            "start": 932632059,
            "stop": 932632072
        },
        {
            "start": 932632073,
            "stop": 932632086
        },
        {
            "start": 932632087,
            "stop": 932632110
        },
        {
            "start": 932632111,
            "stop": 932632139
        },
        {
            "start": 932632140,
            "stop": 932632226
        },
        {
            "start": 932632227,
            "stop": 932632254
        },
        {
            "start": 932632257,
            "stop": 932632263
        },
        {
            "start": 932632264,
            "stop": 932632409
        },
        {
            "start": 932632410,
            "stop": 932632627
        },
        {
            "start": 932632628,
            "stop": 932632700
        },
        {
            "start": 932632704,
            "stop": 932632824
        },
        {
            "start": 932632827,
            "stop": 932632929
        },
        {
            "start": 932632930,
            "stop": 932633301
        }
    ]
}