Return the segments for a given timeline for a run.

Query parameters:

  • start: Initial GPS time of the desired GPS interval.
  • stop: Final GPS time of the desired GPS interval.
  • compact: Return a list of segment [start, stop] list.
GET /api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2224
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": null,
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2223",
    "results_count": 44464,
    "results_per_page": 20,
    "num_pages": 2224,
    "page_number": 2224,
    "results": [
        {
            "start": 875175392,
            "stop": 875181060
        },
        {
            "start": 875181120,
            "stop": 875182180
        },
        {
            "start": 875182299,
            "stop": 875184821
        },
        {
            "start": 875186512,
            "stop": 875232014
        }
    ]
}