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=80
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=81",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=79",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 80,
    "results": [
        {
            "start": 825219025,
            "stop": 825240571
        },
        {
            "start": 825240871,
            "stop": 825246076
        },
        {
            "start": 825403803,
            "stop": 825421168
        },
        {
            "start": 825421169,
            "stop": 825428905
        },
        {
            "start": 825429015,
            "stop": 825436901
        },
        {
            "start": 825437201,
            "stop": 825437422
        },
        {
            "start": 825437788,
            "stop": 825437912
        },
        {
            "start": 825438022,
            "stop": 825441494
        },
        {
            "start": 825441794,
            "stop": 825441984
        },
        {
            "start": 825443193,
            "stop": 825448424
        },
        {
            "start": 825448556,
            "stop": 825448573
        },
        {
            "start": 825448873,
            "stop": 825450792
        },
        {
            "start": 825450886,
            "stop": 825456237
        },
        {
            "start": 825456503,
            "stop": 825458938
        },
        {
            "start": 825468294,
            "stop": 825482207
        },
        {
            "start": 825484706,
            "stop": 825484738
        },
        {
            "start": 825485038,
            "stop": 825485209
        },
        {
            "start": 825485319,
            "stop": 825485441
        },
        {
            "start": 825485741,
            "stop": 825516429
        },
        {
            "start": 825517016,
            "stop": 825519845
        }
    ]
}