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

{
    "next": "https://gwosc.org/api/v2/runs/O4b/timelines/L1_CBC_CAT1/segments?format=api&page=9",
    "previous": "https://gwosc.org/api/v2/runs/O4b/timelines/L1_CBC_CAT1/segments?format=api&page=7",
    "results_count": 1162,
    "results_per_page": 20,
    "num_pages": 59,
    "page_number": 8,
    "results": [
        {
            "start": 1399682751,
            "stop": 1399683773
        },
        {
            "start": 1399688223,
            "stop": 1399730790
        },
        {
            "start": 1399750634,
            "stop": 1399750640
        },
        {
            "start": 1399750649,
            "stop": 1399753270
        },
        {
            "start": 1399753427,
            "stop": 1399753765
        },
        {
            "start": 1399766448,
            "stop": 1399768914
        },
        {
            "start": 1399768962,
            "stop": 1399771122
        },
        {
            "start": 1399771186,
            "stop": 1399772002
        },
        {
            "start": 1399772050,
            "stop": 1399773578
        },
        {
            "start": 1399773642,
            "stop": 1399779426
        },
        {
            "start": 1399779490,
            "stop": 1399780794
        },
        {
            "start": 1399780858,
            "stop": 1399783154
        },
        {
            "start": 1399783202,
            "stop": 1399783378
        },
        {
            "start": 1399783426,
            "stop": 1399788138
        },
        {
            "start": 1399788202,
            "stop": 1399789970
        },
        {
            "start": 1399790034,
            "stop": 1399792394
        },
        {
            "start": 1399792458,
            "stop": 1399795482
        },
        {
            "start": 1399795530,
            "stop": 1399796541
        },
        {
            "start": 1399796546,
            "stop": 1399809864
        },
        {
            "start": 1399809928,
            "stop": 1399814088
        }
    ]
}