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

{
    "next": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_DATA/segments?format=api&page=8",
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_DATA/segments?format=api&page=6",
    "results_count": 568,
    "results_per_page": 20,
    "num_pages": 29,
    "page_number": 7,
    "results": [
        {
            "start": 1372445425,
            "stop": 1372546081
        },
        {
            "start": 1372549784,
            "stop": 1372618858
        },
        {
            "start": 1372633196,
            "stop": 1372654214
        },
        {
            "start": 1372658052,
            "stop": 1372798857
        },
        {
            "start": 1372811832,
            "stop": 1372978505
        },
        {
            "start": 1372983670,
            "stop": 1373056499
        },
        {
            "start": 1373068090,
            "stop": 1373117279
        },
        {
            "start": 1373138368,
            "stop": 1373146939
        },
        {
            "start": 1373150323,
            "stop": 1373150731
        },
        {
            "start": 1373150782,
            "stop": 1373163390
        },
        {
            "start": 1373163925,
            "stop": 1373223541
        },
        {
            "start": 1373228075,
            "stop": 1373228077
        },
        {
            "start": 1373239872,
            "stop": 1373300109
        },
        {
            "start": 1373306214,
            "stop": 1373307153
        },
        {
            "start": 1373324437,
            "stop": 1373362381
        },
        {
            "start": 1373373116,
            "stop": 1373400393
        },
        {
            "start": 1373417136,
            "stop": 1373513048
        },
        {
            "start": 1373515713,
            "stop": 1373525886
        },
        {
            "start": 1373546702,
            "stop": 1373570995
        },
        {
            "start": 1373575415,
            "stop": 1373576254
        }
    ]
}