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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_BURST_CAT3/segments?format=api&page=235",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_BURST_CAT3/segments?format=api&page=233",
    "results_count": 289660,
    "results_per_page": 20,
    "num_pages": 14483,
    "page_number": 234,
    "results": [
        {
            "start": 931675065,
            "stop": 931675069
        },
        {
            "start": 931675072,
            "stop": 931675088
        },
        {
            "start": 931675090,
            "stop": 931675093
        },
        {
            "start": 931675104,
            "stop": 931675108
        },
        {
            "start": 931675113,
            "stop": 931675131
        },
        {
            "start": 931675134,
            "stop": 931675137
        },
        {
            "start": 931675142,
            "stop": 931675143
        },
        {
            "start": 931675149,
            "stop": 931675151
        },
        {
            "start": 931675153,
            "stop": 931675159
        },
        {
            "start": 931675162,
            "stop": 931675169
        },
        {
            "start": 931675174,
            "stop": 931675181
        },
        {
            "start": 931675189,
            "stop": 931675200
        },
        {
            "start": 931675203,
            "stop": 931675208
        },
        {
            "start": 931675213,
            "stop": 931675222
        },
        {
            "start": 931675228,
            "stop": 931675251
        },
        {
            "start": 931675254,
            "stop": 931675255
        },
        {
            "start": 931675258,
            "stop": 931675265
        },
        {
            "start": 931675274,
            "stop": 931675280
        },
        {
            "start": 931675285,
            "stop": 931675286
        },
        {
            "start": 931675291,
            "stop": 931675296
        }
    ]
}