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

{
    "next": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT3/segments?format=api&page=13",
    "previous": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT3/segments?format=api&page=11",
    "results_count": 109510,
    "results_per_page": 20,
    "num_pages": 5476,
    "page_number": 12,
    "results": [
        {
            "start": 1126106974,
            "stop": 1126107059
        },
        {
            "start": 1126107061,
            "stop": 1126107329
        },
        {
            "start": 1126107330,
            "stop": 1126107519
        },
        {
            "start": 1126107520,
            "stop": 1126107886
        },
        {
            "start": 1126107887,
            "stop": 1126107955
        },
        {
            "start": 1126107957,
            "stop": 1126108078
        },
        {
            "start": 1126108079,
            "stop": 1126108411
        },
        {
            "start": 1126108412,
            "stop": 1126108416
        },
        {
            "start": 1126108418,
            "stop": 1126108571
        },
        {
            "start": 1126108573,
            "stop": 1126108720
        },
        {
            "start": 1126108721,
            "stop": 1126109055
        },
        {
            "start": 1126109057,
            "stop": 1126109199
        },
        {
            "start": 1126109201,
            "stop": 1126109307
        },
        {
            "start": 1126109308,
            "stop": 1126109380
        },
        {
            "start": 1126109382,
            "stop": 1126109453
        },
        {
            "start": 1126109454,
            "stop": 1126109643
        },
        {
            "start": 1126109645,
            "stop": 1126109827
        },
        {
            "start": 1126109828,
            "stop": 1126110005
        },
        {
            "start": 1126110006,
            "stop": 1126110310
        },
        {
            "start": 1126110311,
            "stop": 1126110385
        }
    ]
}