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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_DATA/segments?format=api&page=234",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_DATA/segments?format=api&page=232",
    "results_count": 6293,
    "results_per_page": 20,
    "num_pages": 315,
    "page_number": 233,
    "results": [
        {
            "start": 857569658,
            "stop": 857580743
        },
        {
            "start": 857581843,
            "stop": 857583311
        },
        {
            "start": 857586262,
            "stop": 857599149
        },
        {
            "start": 857600025,
            "stop": 857600667
        },
        {
            "start": 857600977,
            "stop": 857604592
        },
        {
            "start": 857604759,
            "stop": 857634989
        },
        {
            "start": 857635279,
            "stop": 857635713
        },
        {
            "start": 857637007,
            "stop": 857659392
        },
        {
            "start": 857660806,
            "stop": 857661155
        },
        {
            "start": 857661213,
            "stop": 857684458
        },
        {
            "start": 857685280,
            "stop": 857688997
        },
        {
            "start": 857689503,
            "stop": 857715997
        },
        {
            "start": 857718480,
            "stop": 857732216
        },
        {
            "start": 857733362,
            "stop": 857750404
        },
        {
            "start": 857750729,
            "stop": 857761802
        },
        {
            "start": 857763713,
            "stop": 857764384
        },
        {
            "start": 857765138,
            "stop": 857769172
        },
        {
            "start": 857769846,
            "stop": 857771055
        },
        {
            "start": 857771126,
            "stop": 857790230
        },
        {
            "start": 857798217,
            "stop": 857803366
        }
    ]
}