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

{
    "next": "https://gwosc.org/api/v2/runs/O2/timelines/H1_CBC_CAT3/segments?format=api&page=100",
    "previous": "https://gwosc.org/api/v2/runs/O2/timelines/H1_CBC_CAT3/segments?format=api&page=98",
    "results_count": 8301,
    "results_per_page": 20,
    "num_pages": 416,
    "page_number": 99,
    "results": [
        {
            "start": 1175800692,
            "stop": 1175800721
        },
        {
            "start": 1175800726,
            "stop": 1175800733
        },
        {
            "start": 1175800734,
            "stop": 1175800735
        },
        {
            "start": 1175800736,
            "stop": 1175800852
        },
        {
            "start": 1175800853,
            "stop": 1175800854
        },
        {
            "start": 1175800855,
            "stop": 1175800856
        },
        {
            "start": 1175800863,
            "stop": 1175800897
        },
        {
            "start": 1175800905,
            "stop": 1175800906
        },
        {
            "start": 1175800910,
            "stop": 1175800911
        },
        {
            "start": 1175800912,
            "stop": 1175800914
        },
        {
            "start": 1175800915,
            "stop": 1175800919
        },
        {
            "start": 1175800926,
            "stop": 1175800929
        },
        {
            "start": 1175800932,
            "stop": 1175800933
        },
        {
            "start": 1175800934,
            "stop": 1175800935
        },
        {
            "start": 1175800937,
            "stop": 1175800940
        },
        {
            "start": 1175800943,
            "stop": 1175800959
        },
        {
            "start": 1175800962,
            "stop": 1175800963
        },
        {
            "start": 1175800964,
            "stop": 1175800970
        },
        {
            "start": 1175800971,
            "stop": 1175801001
        },
        {
            "start": 1175801007,
            "stop": 1175801009
        }
    ]
}