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

{
    "next": "https://gwosc.org/api/v2/runs/O4b/timelines/L1_BURST_CAT2/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/O4b/timelines/L1_BURST_CAT2/segments?format=api&page=122",
    "results_count": 3475,
    "results_per_page": 20,
    "num_pages": 174,
    "page_number": 123,
    "results": [
        {
            "start": 1411951395,
            "stop": 1411971191
        },
        {
            "start": 1411971194,
            "stop": 1411975050
        },
        {
            "start": 1411975052,
            "stop": 1411975208
        },
        {
            "start": 1411975212,
            "stop": 1411977130
        },
        {
            "start": 1411977134,
            "stop": 1411980734
        },
        {
            "start": 1411980736,
            "stop": 1411984603
        },
        {
            "start": 1411984605,
            "stop": 1411989771
        },
        {
            "start": 1411989774,
            "stop": 1411990704
        },
        {
            "start": 1411990709,
            "stop": 1412000997
        },
        {
            "start": 1412001001,
            "stop": 1412003455
        },
        {
            "start": 1412003459,
            "stop": 1412004789
        },
        {
            "start": 1412017476,
            "stop": 1412024153
        },
        {
            "start": 1412024157,
            "stop": 1412032035
        },
        {
            "start": 1412032040,
            "stop": 1412039369
        },
        {
            "start": 1412039373,
            "stop": 1412043748
        },
        {
            "start": 1412043750,
            "stop": 1412047087
        },
        {
            "start": 1412047088,
            "stop": 1412069636
        },
        {
            "start": 1412072569,
            "stop": 1412073088
        },
        {
            "start": 1412073091,
            "stop": 1412078916
        },
        {
            "start": 1412078921,
            "stop": 1412079427
        }
    ]
}