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=100
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=101",
    "previous": "https://gwosc.org/api/v2/runs/O3b/timelines/L1_CBC_CAT2/segments?format=api&page=99",
    "results_count": 9495,
    "results_per_page": 20,
    "num_pages": 475,
    "page_number": 100,
    "results": [
        {
            "start": 1263906841,
            "stop": 1263907023
        },
        {
            "start": 1263907025,
            "stop": 1263907073
        },
        {
            "start": 1263907075,
            "stop": 1263907114
        },
        {
            "start": 1263907115,
            "stop": 1263907173
        },
        {
            "start": 1263907174,
            "stop": 1263907176
        },
        {
            "start": 1263907179,
            "stop": 1263907180
        },
        {
            "start": 1263907182,
            "stop": 1263907185
        },
        {
            "start": 1263907187,
            "stop": 1263907400
        },
        {
            "start": 1263907403,
            "stop": 1263907451
        },
        {
            "start": 1263907452,
            "stop": 1263907637
        },
        {
            "start": 1263907640,
            "stop": 1263907758
        },
        {
            "start": 1263907760,
            "stop": 1263907824
        },
        {
            "start": 1263907826,
            "stop": 1263907833
        },
        {
            "start": 1263907835,
            "stop": 1263907995
        },
        {
            "start": 1263907997,
            "stop": 1263908106
        },
        {
            "start": 1263908107,
            "stop": 1263908132
        },
        {
            "start": 1263908134,
            "stop": 1263908542
        },
        {
            "start": 1263908543,
            "stop": 1263909122
        },
        {
            "start": 1263909124,
            "stop": 1263909128
        },
        {
            "start": 1263909130,
            "stop": 1263909133
        }
    ]
}