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=20
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=21",
    "previous": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT3/segments?format=api&page=19",
    "results_count": 109510,
    "results_per_page": 20,
    "num_pages": 5476,
    "page_number": 20,
    "results": [
        {
            "start": 1126320483,
            "stop": 1126320804
        },
        {
            "start": 1126320805,
            "stop": 1126320902
        },
        {
            "start": 1126320903,
            "stop": 1126320967
        },
        {
            "start": 1126320968,
            "stop": 1126321116
        },
        {
            "start": 1126321117,
            "stop": 1126321189
        },
        {
            "start": 1126321190,
            "stop": 1126321450
        },
        {
            "start": 1126321451,
            "stop": 1126321546
        },
        {
            "start": 1126321547,
            "stop": 1126321652
        },
        {
            "start": 1126321653,
            "stop": 1126321842
        },
        {
            "start": 1126321843,
            "stop": 1126321883
        },
        {
            "start": 1126321884,
            "stop": 1126322276
        },
        {
            "start": 1126322277,
            "stop": 1126322561
        },
        {
            "start": 1126322562,
            "stop": 1126322975
        },
        {
            "start": 1126322976,
            "stop": 1126323083
        },
        {
            "start": 1126323084,
            "stop": 1126323157
        },
        {
            "start": 1126323158,
            "stop": 1126323304
        },
        {
            "start": 1126323305,
            "stop": 1126323444
        },
        {
            "start": 1126323446,
            "stop": 1126323838
        },
        {
            "start": 1126323839,
            "stop": 1126323953
        },
        {
            "start": 1126323954,
            "stop": 1126324089
        }
    ]
}