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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CW_CAT1/segments?format=api&page=102",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CW_CAT1/segments?format=api&page=100",
    "results_count": 3094,
    "results_per_page": 20,
    "num_pages": 155,
    "page_number": 101,
    "results": [
        {
            "start": 957801148,
            "stop": 957811094
        },
        {
            "start": 957812051,
            "stop": 957812585
        },
        {
            "start": 957813550,
            "stop": 957815334
        },
        {
            "start": 957816285,
            "stop": 957817922
        },
        {
            "start": 957818837,
            "stop": 957819130
        },
        {
            "start": 957823168,
            "stop": 957827254
        },
        {
            "start": 957828503,
            "stop": 957829372
        },
        {
            "start": 957830493,
            "stop": 957830542
        },
        {
            "start": 957833074,
            "stop": 957834274
        },
        {
            "start": 957838624,
            "stop": 957839511
        },
        {
            "start": 957840622,
            "stop": 957840747
        },
        {
            "start": 957841669,
            "stop": 957846412
        },
        {
            "start": 957856582,
            "stop": 957861870
        },
        {
            "start": 957863139,
            "stop": 957865510
        },
        {
            "start": 957866568,
            "stop": 957866901
        },
        {
            "start": 957869508,
            "stop": 957869558
        },
        {
            "start": 957870674,
            "stop": 957877652
        },
        {
            "start": 957878836,
            "stop": 957881922
        },
        {
            "start": 957882826,
            "stop": 957910495
        },
        {
            "start": 957911221,
            "stop": 957911398
        }
    ]
}