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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_HW/segments?format=api&page=58",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_HW/segments?format=api&page=56",
    "results_count": 2118,
    "results_per_page": 20,
    "num_pages": 106,
    "page_number": 57,
    "results": [
        {
            "start": 851697509,
            "stop": 851697652
        },
        {
            "start": 851806587,
            "stop": 851806723
        },
        {
            "start": 851815020,
            "stop": 851815235
        },
        {
            "start": 851820908,
            "stop": 851821035
        },
        {
            "start": 851848892,
            "stop": 851849019
        },
        {
            "start": 851970204,
            "stop": 851970340
        },
        {
            "start": 852058708,
            "stop": 852058852
        },
        {
            "start": 852184212,
            "stop": 852184348
        },
        {
            "start": 852192515,
            "stop": 852192651
        },
        {
            "start": 852258380,
            "stop": 852258515
        },
        {
            "start": 852305820,
            "stop": 852306028
        },
        {
            "start": 852332412,
            "stop": 852332540
        },
        {
            "start": 852347180,
            "stop": 852347316
        },
        {
            "start": 852366108,
            "stop": 852366236
        },
        {
            "start": 852388452,
            "stop": 852388587
        },
        {
            "start": 852430769,
            "stop": 852430906
        },
        {
            "start": 852454852,
            "stop": 852455061
        },
        {
            "start": 852491188,
            "stop": 852491332
        },
        {
            "start": 852499787,
            "stop": 852499923
        },
        {
            "start": 852516228,
            "stop": 852516372
        }
    ]
}