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_STOCH_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_STOCH_CAT1/segments?format=api&page=61",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_STOCH_CAT1/segments?format=api&page=59",
    "results_count": 30795,
    "results_per_page": 20,
    "num_pages": 1540,
    "page_number": 60,
    "results": [
        {
            "start": 822531425,
            "stop": 822533024
        },
        {
            "start": 822533056,
            "stop": 822535309
        },
        {
            "start": 822536379,
            "stop": 822536832
        },
        {
            "start": 822536864,
            "stop": 822537673
        },
        {
            "start": 822537879,
            "stop": 822538912
        },
        {
            "start": 822538944,
            "stop": 822539295
        },
        {
            "start": 822539460,
            "stop": 822539953
        },
        {
            "start": 822540137,
            "stop": 822540485
        },
        {
            "start": 822540542,
            "stop": 822540794
        },
        {
            "start": 822541018,
            "stop": 822541728
        },
        {
            "start": 822541760,
            "stop": 822541873
        },
        {
            "start": 822542026,
            "stop": 822542037
        },
        {
            "start": 822542489,
            "stop": 822542915
        },
        {
            "start": 822543052,
            "stop": 822544500
        },
        {
            "start": 822545382,
            "stop": 822546112
        },
        {
            "start": 822546144,
            "stop": 822546493
        },
        {
            "start": 822546507,
            "stop": 822546508
        },
        {
            "start": 822548265,
            "stop": 822548653
        },
        {
            "start": 822548714,
            "stop": 822548735
        },
        {
            "start": 822548892,
            "stop": 822549473
        }
    ]
}