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

{
    "next": "https://gwosc.org/api/v2/runs/O3b/timelines/L1_CBC_CAT3/segments?format=api&page=235",
    "previous": "https://gwosc.org/api/v2/runs/O3b/timelines/L1_CBC_CAT3/segments?format=api&page=233",
    "results_count": 9495,
    "results_per_page": 20,
    "num_pages": 475,
    "page_number": 234,
    "results": [
        {
            "start": 1264397487,
            "stop": 1264397565
        },
        {
            "start": 1264397566,
            "stop": 1264397573
        },
        {
            "start": 1264397575,
            "stop": 1264397579
        },
        {
            "start": 1264397580,
            "stop": 1264397581
        },
        {
            "start": 1264397582,
            "stop": 1264397587
        },
        {
            "start": 1264397590,
            "stop": 1264397606
        },
        {
            "start": 1264397608,
            "stop": 1264397615
        },
        {
            "start": 1264397616,
            "stop": 1264397621
        },
        {
            "start": 1264397623,
            "stop": 1264397630
        },
        {
            "start": 1264397632,
            "stop": 1264397698
        },
        {
            "start": 1264397700,
            "stop": 1264397726
        },
        {
            "start": 1264397729,
            "stop": 1264397793
        },
        {
            "start": 1264397795,
            "stop": 1264397800
        },
        {
            "start": 1264397804,
            "stop": 1264397809
        },
        {
            "start": 1264397812,
            "stop": 1264397846
        },
        {
            "start": 1264397848,
            "stop": 1264397854
        },
        {
            "start": 1264397857,
            "stop": 1264397861
        },
        {
            "start": 1264397863,
            "stop": 1264397897
        },
        {
            "start": 1264397898,
            "stop": 1264397930
        },
        {
            "start": 1264397933,
            "stop": 1264397947
        }
    ]
}