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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CW_CAT1/segments?format=api&page=235",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CW_CAT1/segments?format=api&page=233",
    "results_count": 7262,
    "results_per_page": 20,
    "num_pages": 364,
    "page_number": 234,
    "results": [
        {
            "start": 850103530,
            "stop": 850103536
        },
        {
            "start": 850103540,
            "stop": 850103545
        },
        {
            "start": 850103549,
            "stop": 850103598
        },
        {
            "start": 850103601,
            "stop": 850109675
        },
        {
            "start": 850109678,
            "stop": 850109723
        },
        {
            "start": 850109727,
            "stop": 850109756
        },
        {
            "start": 850109760,
            "stop": 850109794
        },
        {
            "start": 850109802,
            "stop": 850109808
        },
        {
            "start": 850109823,
            "stop": 850109833
        },
        {
            "start": 850109838,
            "stop": 850109849
        },
        {
            "start": 850109871,
            "stop": 850109878
        },
        {
            "start": 850109891,
            "stop": 850109896
        },
        {
            "start": 850109910,
            "stop": 850109926
        },
        {
            "start": 850109929,
            "stop": 850109945
        },
        {
            "start": 850109949,
            "stop": 850109974
        },
        {
            "start": 850109978,
            "stop": 850110024
        },
        {
            "start": 850110027,
            "stop": 850110038
        },
        {
            "start": 850110042,
            "stop": 850110052
        },
        {
            "start": 850110061,
            "stop": 850110076
        },
        {
            "start": 850110090,
            "stop": 850110159
        }
    ]
}