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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=112",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=110",
    "results_count": 7594,
    "results_per_page": 20,
    "num_pages": 380,
    "page_number": 111,
    "results": [
        {
            "start": 830450137,
            "stop": 830450514
        },
        {
            "start": 830455385,
            "stop": 830455453
        },
        {
            "start": 830456294,
            "stop": 830457133
        },
        {
            "start": 830457957,
            "stop": 830460313
        },
        {
            "start": 830482707,
            "stop": 830489810
        },
        {
            "start": 830501692,
            "stop": 830502193
        },
        {
            "start": 830503715,
            "stop": 830505241
        },
        {
            "start": 830513480,
            "stop": 830518393
        },
        {
            "start": 830518394,
            "stop": 830518395
        },
        {
            "start": 830519163,
            "stop": 830523133
        },
        {
            "start": 830523158,
            "stop": 830523160
        },
        {
            "start": 830523329,
            "stop": 830524791
        },
        {
            "start": 830525570,
            "stop": 830527813
        },
        {
            "start": 830527830,
            "stop": 830527832
        },
        {
            "start": 830528602,
            "stop": 830529493
        },
        {
            "start": 830529501,
            "stop": 830529503
        },
        {
            "start": 830529670,
            "stop": 830530784
        },
        {
            "start": 830531679,
            "stop": 830535942
        },
        {
            "start": 830536714,
            "stop": 830539453
        },
        {
            "start": 830539468,
            "stop": 830539470
        }
    ]
}