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=60
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=61",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_HW/segments?format=api&page=59",
    "results_count": 2118,
    "results_per_page": 20,
    "num_pages": 106,
    "page_number": 60,
    "results": [
        {
            "start": 854259749,
            "stop": 854259885
        },
        {
            "start": 854276861,
            "stop": 854276988
        },
        {
            "start": 854300508,
            "stop": 854300652
        },
        {
            "start": 854338861,
            "stop": 854338988
        },
        {
            "start": 854355045,
            "stop": 854355189
        },
        {
            "start": 854362492,
            "stop": 854362620
        },
        {
            "start": 854381757,
            "stop": 854381885
        },
        {
            "start": 854412365,
            "stop": 854412493
        },
        {
            "start": 854456285,
            "stop": 854456412
        },
        {
            "start": 854477820,
            "stop": 854477948
        },
        {
            "start": 854492293,
            "stop": 854492437
        },
        {
            "start": 854506278,
            "stop": 854506404
        },
        {
            "start": 854552021,
            "stop": 854552149
        },
        {
            "start": 854579773,
            "stop": 854579900
        },
        {
            "start": 854588709,
            "stop": 854588837
        },
        {
            "start": 854616669,
            "stop": 854616877
        },
        {
            "start": 854645181,
            "stop": 854645317
        },
        {
            "start": 854650925,
            "stop": 854651053
        },
        {
            "start": 854668877,
            "stop": 854669004
        },
        {
            "start": 854675973,
            "stop": 854676101
        }
    ]
}