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=123
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=124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=122",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 123,
    "results": [
        {
            "start": 832726389,
            "stop": 832727597
        },
        {
            "start": 832727599,
            "stop": 832772776
        },
        {
            "start": 832772886,
            "stop": 832773014
        },
        {
            "start": 832773314,
            "stop": 832774580
        },
        {
            "start": 832774861,
            "stop": 832801673
        },
        {
            "start": 832806384,
            "stop": 832806854
        },
        {
            "start": 832809866,
            "stop": 832812524
        },
        {
            "start": 832815798,
            "stop": 832821680
        },
        {
            "start": 832826625,
            "stop": 832837228
        },
        {
            "start": 832839876,
            "stop": 832851163
        },
        {
            "start": 832851165,
            "stop": 832853033
        },
        {
            "start": 832853372,
            "stop": 832853394
        },
        {
            "start": 832853504,
            "stop": 832854336
        },
        {
            "start": 832854636,
            "stop": 832858274
        },
        {
            "start": 832858574,
            "stop": 832860501
        },
        {
            "start": 832860808,
            "stop": 832865496
        },
        {
            "start": 832865797,
            "stop": 832866447
        },
        {
            "start": 832866535,
            "stop": 832882686
        },
        {
            "start": 832884517,
            "stop": 832921388
        },
        {
            "start": 832921389,
            "stop": 832921397
        }
    ]
}