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=101
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=102",
    "previous": "https://gwosc.org/api/v2/runs/O3b/timelines/L1_CBC_CAT2/segments?format=api&page=100",
    "results_count": 9495,
    "results_per_page": 20,
    "num_pages": 475,
    "page_number": 101,
    "results": [
        {
            "start": 1263909134,
            "stop": 1263909136
        },
        {
            "start": 1263909138,
            "stop": 1263909544
        },
        {
            "start": 1263909545,
            "stop": 1263909547
        },
        {
            "start": 1263909549,
            "stop": 1263909671
        },
        {
            "start": 1263909673,
            "stop": 1263909753
        },
        {
            "start": 1263909754,
            "stop": 1263909987
        },
        {
            "start": 1263909988,
            "stop": 1263910002
        },
        {
            "start": 1263910005,
            "stop": 1263910006
        },
        {
            "start": 1263910008,
            "stop": 1263910047
        },
        {
            "start": 1263910049,
            "stop": 1263910234
        },
        {
            "start": 1263910236,
            "stop": 1263910238
        },
        {
            "start": 1263910240,
            "stop": 1263910245
        },
        {
            "start": 1263910247,
            "stop": 1263910249
        },
        {
            "start": 1263910251,
            "stop": 1263910266
        },
        {
            "start": 1263910268,
            "stop": 1263910287
        },
        {
            "start": 1263910288,
            "stop": 1263910298
        },
        {
            "start": 1263910300,
            "stop": 1263910303
        },
        {
            "start": 1263910305,
            "stop": 1263910318
        },
        {
            "start": 1263910319,
            "stop": 1263910323
        },
        {
            "start": 1263910324,
            "stop": 1263910327
        }
    ]
}