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=60
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=61",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT2/segments?format=api&page=59",
    "results_count": 47811,
    "results_per_page": 20,
    "num_pages": 2391,
    "page_number": 60,
    "results": [
        {
            "start": 817802329,
            "stop": 817802342
        },
        {
            "start": 817802363,
            "stop": 817803079
        },
        {
            "start": 817803089,
            "stop": 817803092
        },
        {
            "start": 817803100,
            "stop": 817803407
        },
        {
            "start": 817803415,
            "stop": 817803416
        },
        {
            "start": 817804811,
            "stop": 817807967
        },
        {
            "start": 817807975,
            "stop": 817808007
        },
        {
            "start": 817808015,
            "stop": 817808218
        },
        {
            "start": 817808226,
            "stop": 817808315
        },
        {
            "start": 817808323,
            "stop": 817808421
        },
        {
            "start": 817808429,
            "stop": 817808627
        },
        {
            "start": 817808637,
            "stop": 817808652
        },
        {
            "start": 817808660,
            "stop": 817808842
        },
        {
            "start": 817808850,
            "stop": 817810018
        },
        {
            "start": 817810034,
            "stop": 817811552
        },
        {
            "start": 817811560,
            "stop": 817812326
        },
        {
            "start": 817812334,
            "stop": 817812967
        },
        {
            "start": 817812975,
            "stop": 817813410
        },
        {
            "start": 817813427,
            "stop": 817813717
        },
        {
            "start": 817813725,
            "stop": 817814029
        }
    ]
}