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=101
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=102",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=100",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 101,
    "results": [
        {
            "start": 829145391,
            "stop": 829150116
        },
        {
            "start": 829151305,
            "stop": 829161542
        },
        {
            "start": 829163543,
            "stop": 829171598
        },
        {
            "start": 829171630,
            "stop": 829171650
        },
        {
            "start": 829171898,
            "stop": 829174294
        },
        {
            "start": 829206742,
            "stop": 829207272
        },
        {
            "start": 829210428,
            "stop": 829210430
        },
        {
            "start": 829210516,
            "stop": 829210517
        },
        {
            "start": 829214456,
            "stop": 829214459
        },
        {
            "start": 829237323,
            "stop": 829248038
        },
        {
            "start": 829254052,
            "stop": 829259373
        },
        {
            "start": 829259673,
            "stop": 829263371
        },
        {
            "start": 829278749,
            "stop": 829325266
        },
        {
            "start": 829325282,
            "stop": 829330900
        },
        {
            "start": 829331200,
            "stop": 829333729
        },
        {
            "start": 829334029,
            "stop": 829335679
        },
        {
            "start": 829344755,
            "stop": 829346193
        },
        {
            "start": 829346241,
            "stop": 829349138
        },
        {
            "start": 829349248,
            "stop": 829350952
        },
        {
            "start": 829352830,
            "stop": 829363249
        }
    ]
}