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=64
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=65",
    "previous": "https://gwosc.org/api/v2/runs/O3b/timelines/L1_CBC_CAT2/segments?format=api&page=63",
    "results_count": 9495,
    "results_per_page": 20,
    "num_pages": 475,
    "page_number": 64,
    "results": [
        {
            "start": 1262699877,
            "stop": 1262699938
        },
        {
            "start": 1262699943,
            "stop": 1262699953
        },
        {
            "start": 1262699954,
            "stop": 1262700058
        },
        {
            "start": 1262700059,
            "stop": 1262700072
        },
        {
            "start": 1262700076,
            "stop": 1262700078
        },
        {
            "start": 1262700080,
            "stop": 1262700081
        },
        {
            "start": 1262700084,
            "stop": 1262700106
        },
        {
            "start": 1262700108,
            "stop": 1262700119
        },
        {
            "start": 1262700121,
            "stop": 1262700160
        },
        {
            "start": 1262700162,
            "stop": 1262700233
        },
        {
            "start": 1262700234,
            "stop": 1262700285
        },
        {
            "start": 1262700288,
            "stop": 1262700371
        },
        {
            "start": 1262700374,
            "stop": 1262700385
        },
        {
            "start": 1262700387,
            "stop": 1262700550
        },
        {
            "start": 1262700553,
            "stop": 1262700575
        },
        {
            "start": 1262700579,
            "stop": 1262700593
        },
        {
            "start": 1262700597,
            "stop": 1262700651
        },
        {
            "start": 1262700653,
            "stop": 1262700665
        },
        {
            "start": 1262700668,
            "stop": 1262700685
        },
        {
            "start": 1262700687,
            "stop": 1262700692
        }
    ]
}