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=24
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=25",
    "previous": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT3/segments?format=api&page=23",
    "results_count": 109510,
    "results_per_page": 20,
    "num_pages": 5476,
    "page_number": 24,
    "results": [
        {
            "start": 1126333902,
            "stop": 1126333919
        },
        {
            "start": 1126333921,
            "stop": 1126333997
        },
        {
            "start": 1126333998,
            "stop": 1126334105
        },
        {
            "start": 1126334106,
            "stop": 1126334202
        },
        {
            "start": 1126334203,
            "stop": 1126334287
        },
        {
            "start": 1126334288,
            "stop": 1126334293
        },
        {
            "start": 1126334294,
            "stop": 1126334322
        },
        {
            "start": 1126334323,
            "stop": 1126334735
        },
        {
            "start": 1126334736,
            "stop": 1126334999
        },
        {
            "start": 1126335000,
            "stop": 1126335386
        },
        {
            "start": 1126335388,
            "stop": 1126335482
        },
        {
            "start": 1126335483,
            "stop": 1126335494
        },
        {
            "start": 1126335495,
            "stop": 1126335589
        },
        {
            "start": 1126335590,
            "stop": 1126335697
        },
        {
            "start": 1126335698,
            "stop": 1126335778
        },
        {
            "start": 1126335779,
            "stop": 1126335823
        },
        {
            "start": 1126335825,
            "stop": 1126335997
        },
        {
            "start": 1126335999,
            "stop": 1126336214
        },
        {
            "start": 1126336215,
            "stop": 1126336377
        },
        {
            "start": 1126336379,
            "stop": 1126336386
        }
    ]
}