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/O4b/timelines/H1_BURST_CAT3/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/O4b/timelines/H1_BURST_CAT3/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/O4b/timelines/H1_BURST_CAT3/segments?format=api&page=122",
    "results_count": 3868,
    "results_per_page": 20,
    "num_pages": 194,
    "page_number": 123,
    "results": [
        {
            "start": 1415504462,
            "stop": 1415505076
        },
        {
            "start": 1415505081,
            "stop": 1415508068
        },
        {
            "start": 1415508072,
            "stop": 1415508168
        },
        {
            "start": 1415527935,
            "stop": 1415530078
        },
        {
            "start": 1415530083,
            "stop": 1415537269
        },
        {
            "start": 1415552315,
            "stop": 1415552600
        },
        {
            "start": 1415552605,
            "stop": 1415552657
        },
        {
            "start": 1415552662,
            "stop": 1415552675
        },
        {
            "start": 1415552680,
            "stop": 1415552693
        },
        {
            "start": 1415552698,
            "stop": 1415553330
        },
        {
            "start": 1415553338,
            "stop": 1415553501
        },
        {
            "start": 1415577752,
            "stop": 1415579012
        },
        {
            "start": 1415579016,
            "stop": 1415579284
        },
        {
            "start": 1415579289,
            "stop": 1415579661
        },
        {
            "start": 1415579666,
            "stop": 1415582355
        },
        {
            "start": 1415582451,
            "stop": 1415583792
        },
        {
            "start": 1415583869,
            "stop": 1415585559
        },
        {
            "start": 1415585563,
            "stop": 1415595553
        },
        {
            "start": 1415676767,
            "stop": 1415684830
        },
        {
            "start": 1415701620,
            "stop": 1415703734
        }
    ]
}