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_CAT2E/segments?format=api&page=401
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2E/segments?format=api&page=402",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2E/segments?format=api&page=400",
    "results_count": 146533,
    "results_per_page": 20,
    "num_pages": 7327,
    "page_number": 401,
    "results": [
        {
            "start": 847784561,
            "stop": 847784644
        },
        {
            "start": 847784648,
            "stop": 847784730
        },
        {
            "start": 847784732,
            "stop": 847784741
        },
        {
            "start": 847784742,
            "stop": 847784812
        },
        {
            "start": 847784813,
            "stop": 847785022
        },
        {
            "start": 847785023,
            "stop": 847785061
        },
        {
            "start": 847785063,
            "stop": 847785082
        },
        {
            "start": 847785083,
            "stop": 847785148
        },
        {
            "start": 847785149,
            "stop": 847785167
        },
        {
            "start": 847785168,
            "stop": 847785189
        },
        {
            "start": 847785193,
            "stop": 847785209
        },
        {
            "start": 847785211,
            "stop": 847785274
        },
        {
            "start": 847785275,
            "stop": 847785295
        },
        {
            "start": 847785296,
            "stop": 847785317
        },
        {
            "start": 847785319,
            "stop": 847785320
        },
        {
            "start": 847785321,
            "stop": 847785336
        },
        {
            "start": 847785337,
            "stop": 847785412
        },
        {
            "start": 847785413,
            "stop": 847785422
        },
        {
            "start": 847785423,
            "stop": 847785465
        },
        {
            "start": 847785466,
            "stop": 847785504
        }
    ]
}