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=222
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=223",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=221",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 222,
    "results": [
        {
            "start": 850370277,
            "stop": 850370278
        },
        {
            "start": 850372996,
            "stop": 850395560
        },
        {
            "start": 850397017,
            "stop": 850405041
        },
        {
            "start": 850405370,
            "stop": 850457907
        },
        {
            "start": 850457909,
            "stop": 850488184
        },
        {
            "start": 850488294,
            "stop": 850488386
        },
        {
            "start": 850488804,
            "stop": 850489887
        },
        {
            "start": 850489889,
            "stop": 850490680
        },
        {
            "start": 850490980,
            "stop": 850514205
        },
        {
            "start": 850515666,
            "stop": 850517977
        },
        {
            "start": 850519090,
            "stop": 850532360
        },
        {
            "start": 850534437,
            "stop": 850579249
        },
        {
            "start": 850599430,
            "stop": 850602729
        },
        {
            "start": 850603029,
            "stop": 850643006
        },
        {
            "start": 850644481,
            "stop": 850666318
        },
        {
            "start": 850666621,
            "stop": 850674093
        },
        {
            "start": 850674425,
            "stop": 850677140
        },
        {
            "start": 850678934,
            "stop": 850679090
        },
        {
            "start": 850680202,
            "stop": 850691962
        },
        {
            "start": 850693570,
            "stop": 850694311
        }
    ]
}