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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT2/segments?format=api&page=2201",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT2/segments?format=api&page=2199",
    "results_count": 47811,
    "results_per_page": 20,
    "num_pages": 2391,
    "page_number": 2200,
    "results": [
        {
            "start": 872556518,
            "stop": 872557221
        },
        {
            "start": 872557238,
            "stop": 872557385
        },
        {
            "start": 872557404,
            "stop": 872557496
        },
        {
            "start": 872557515,
            "stop": 872558055
        },
        {
            "start": 872558083,
            "stop": 872558203
        },
        {
            "start": 872558222,
            "stop": 872558500
        },
        {
            "start": 872558519,
            "stop": 872561151
        },
        {
            "start": 872561170,
            "stop": 872561698
        },
        {
            "start": 872561722,
            "stop": 872561836
        },
        {
            "start": 872561867,
            "stop": 872561927
        },
        {
            "start": 872561946,
            "stop": 872562399
        },
        {
            "start": 872562442,
            "stop": 872562736
        },
        {
            "start": 872562769,
            "stop": 872562773
        },
        {
            "start": 872562800,
            "stop": 872562809
        },
        {
            "start": 872562835,
            "stop": 872562837
        },
        {
            "start": 872562856,
            "stop": 872562922
        },
        {
            "start": 872562948,
            "stop": 872562949
        },
        {
            "start": 872562989,
            "stop": 872563012
        },
        {
            "start": 872563031,
            "stop": 872563160
        },
        {
            "start": 872563179,
            "stop": 872563249
        }
    ]
}