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=54
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=55",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_HW/segments?format=api&page=53",
    "results_count": 2118,
    "results_per_page": 20,
    "num_pages": 106,
    "page_number": 54,
    "results": [
        {
            "start": 849542124,
            "stop": 849542268
        },
        {
            "start": 849552363,
            "stop": 849552507
        },
        {
            "start": 849558428,
            "stop": 849558571
        },
        {
            "start": 849689468,
            "stop": 849689604
        },
        {
            "start": 849717652,
            "stop": 849717788
        },
        {
            "start": 849731052,
            "stop": 849731179
        },
        {
            "start": 849740028,
            "stop": 849740155
        },
        {
            "start": 849759355,
            "stop": 849759499
        },
        {
            "start": 849770212,
            "stop": 849770347
        },
        {
            "start": 849795076,
            "stop": 849795211
        },
        {
            "start": 849831940,
            "stop": 849832068
        },
        {
            "start": 849875507,
            "stop": 849875651
        },
        {
            "start": 849955636,
            "stop": 849955764
        },
        {
            "start": 849967323,
            "stop": 849967451
        },
        {
            "start": 850001373,
            "stop": 850001508
        },
        {
            "start": 850020828,
            "stop": 850020972
        },
        {
            "start": 850039413,
            "stop": 850039557
        },
        {
            "start": 850122317,
            "stop": 850122525
        },
        {
            "start": 850133813,
            "stop": 850133941
        },
        {
            "start": 850166902,
            "stop": 850167029
        }
    ]
}