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=55
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=56",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_HW/segments?format=api&page=54",
    "results_count": 2118,
    "results_per_page": 20,
    "num_pages": 106,
    "page_number": 55,
    "results": [
        {
            "start": 850179629,
            "stop": 850179765
        },
        {
            "start": 850271707,
            "stop": 850271835
        },
        {
            "start": 850299187,
            "stop": 850299314
        },
        {
            "start": 850332115,
            "stop": 850332259
        },
        {
            "start": 850376186,
            "stop": 850376322
        },
        {
            "start": 850383740,
            "stop": 850383882
        },
        {
            "start": 850394603,
            "stop": 850394731
        },
        {
            "start": 850422051,
            "stop": 850422179
        },
        {
            "start": 850527220,
            "stop": 850527362
        },
        {
            "start": 850534995,
            "stop": 850535123
        },
        {
            "start": 850562820,
            "stop": 850562946
        },
        {
            "start": 850573580,
            "stop": 850573715
        },
        {
            "start": 850604891,
            "stop": 850605099
        },
        {
            "start": 850620370,
            "stop": 850620514
        },
        {
            "start": 850630523,
            "stop": 850630667
        },
        {
            "start": 850679067,
            "stop": 850679194
        },
        {
            "start": 850693747,
            "stop": 850693963
        },
        {
            "start": 850825540,
            "stop": 850825683
        },
        {
            "start": 850866260,
            "stop": 850866395
        },
        {
            "start": 850873571,
            "stop": 850873700
        }
    ]
}