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=21
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=22",
    "previous": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT3/segments?format=api&page=20",
    "results_count": 109510,
    "results_per_page": 20,
    "num_pages": 5476,
    "page_number": 21,
    "results": [
        {
            "start": 1126324090,
            "stop": 1126324508
        },
        {
            "start": 1126324509,
            "stop": 1126324592
        },
        {
            "start": 1126324593,
            "stop": 1126324702
        },
        {
            "start": 1126324703,
            "stop": 1126324797
        },
        {
            "start": 1126324798,
            "stop": 1126324892
        },
        {
            "start": 1126324893,
            "stop": 1126324917
        },
        {
            "start": 1126324918,
            "stop": 1126325349
        },
        {
            "start": 1126325350,
            "stop": 1126325456
        },
        {
            "start": 1126325457,
            "stop": 1126325646
        },
        {
            "start": 1126325647,
            "stop": 1126326031
        },
        {
            "start": 1126326032,
            "stop": 1126326138
        },
        {
            "start": 1126326139,
            "stop": 1126326214
        },
        {
            "start": 1126326215,
            "stop": 1126326361
        },
        {
            "start": 1126326362,
            "stop": 1126326441
        },
        {
            "start": 1126326442,
            "stop": 1126326480
        },
        {
            "start": 1126326481,
            "stop": 1126326906
        },
        {
            "start": 1126326907,
            "stop": 1126327011
        },
        {
            "start": 1126327012,
            "stop": 1126327203
        },
        {
            "start": 1126327204,
            "stop": 1126327557
        },
        {
            "start": 1126327558,
            "stop": 1126327665
        }
    ]
}