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_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/O3b/timelines/L1_CBC_CAT2/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/O3b/timelines/L1_CBC_CAT2/segments?format=api&page=122",
    "results_count": 9495,
    "results_per_page": 20,
    "num_pages": 475,
    "page_number": 123,
    "results": [
        {
            "start": 1264180592,
            "stop": 1264180593
        },
        {
            "start": 1264180595,
            "stop": 1264180715
        },
        {
            "start": 1264180717,
            "stop": 1264180746
        },
        {
            "start": 1264180747,
            "stop": 1264180754
        },
        {
            "start": 1264180755,
            "stop": 1264180757
        },
        {
            "start": 1264180759,
            "stop": 1264180761
        },
        {
            "start": 1264180763,
            "stop": 1264180807
        },
        {
            "start": 1264180809,
            "stop": 1264180817
        },
        {
            "start": 1264180819,
            "stop": 1264180820
        },
        {
            "start": 1264180823,
            "stop": 1264180825
        },
        {
            "start": 1264180826,
            "stop": 1264180831
        },
        {
            "start": 1264180835,
            "stop": 1264180856
        },
        {
            "start": 1264180857,
            "stop": 1264180866
        },
        {
            "start": 1264180869,
            "stop": 1264180875
        },
        {
            "start": 1264180877,
            "stop": 1264180882
        },
        {
            "start": 1264180885,
            "stop": 1264180886
        },
        {
            "start": 1264180887,
            "stop": 1264180932
        },
        {
            "start": 1264180938,
            "stop": 1264180941
        },
        {
            "start": 1264180943,
            "stop": 1264180946
        },
        {
            "start": 1264180950,
            "stop": 1264180953
        }
    ]
}