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=60
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=61",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=59",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 60,
    "results": [
        {
            "start": 822849691,
            "stop": 822850197
        },
        {
            "start": 822850324,
            "stop": 822850391
        },
        {
            "start": 822859664,
            "stop": 822860604
        },
        {
            "start": 822862046,
            "stop": 822862183
        },
        {
            "start": 822865896,
            "stop": 822866497
        },
        {
            "start": 822867086,
            "stop": 822869918
        },
        {
            "start": 822871937,
            "stop": 822872217
        },
        {
            "start": 822872353,
            "stop": 822873303
        },
        {
            "start": 822877048,
            "stop": 822883628
        },
        {
            "start": 822883667,
            "stop": 822887565
        },
        {
            "start": 822887633,
            "stop": 822889886
        },
        {
            "start": 822893845,
            "stop": 822898131
        },
        {
            "start": 822898273,
            "stop": 822912143
        },
        {
            "start": 822912236,
            "stop": 822913090
        },
        {
            "start": 822913244,
            "stop": 822914617
        },
        {
            "start": 822914763,
            "stop": 822914972
        },
        {
            "start": 822917469,
            "stop": 822920394
        },
        {
            "start": 822922220,
            "stop": 822928152
        },
        {
            "start": 822928321,
            "stop": 822931343
        },
        {
            "start": 822931528,
            "stop": 822932419
        }
    ]
}