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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_HW/segments?format=api&page=66",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_HW/segments?format=api&page=64",
    "results_count": 2118,
    "results_per_page": 20,
    "num_pages": 106,
    "page_number": 65,
    "results": [
        {
            "start": 856612537,
            "stop": 856612673
        },
        {
            "start": 856624761,
            "stop": 856624888
        },
        {
            "start": 856663433,
            "stop": 856663561
        },
        {
            "start": 856670633,
            "stop": 856670761
        },
        {
            "start": 856683729,
            "stop": 856683872
        },
        {
            "start": 856707682,
            "stop": 856707818
        },
        {
            "start": 856713499,
            "stop": 856713634
        },
        {
            "start": 856754683,
            "stop": 856754819
        },
        {
            "start": 856766986,
            "stop": 856767186
        },
        {
            "start": 856783267,
            "stop": 856783395
        },
        {
            "start": 856797762,
            "stop": 856797890
        },
        {
            "start": 856816739,
            "stop": 856816883
        },
        {
            "start": 856951868,
            "stop": 856952011
        },
        {
            "start": 856992132,
            "stop": 856992268
        },
        {
            "start": 857015036,
            "stop": 857015163
        },
        {
            "start": 857025700,
            "stop": 857025828
        },
        {
            "start": 857038275,
            "stop": 857038411
        },
        {
            "start": 857053812,
            "stop": 857053940
        },
        {
            "start": 857060756,
            "stop": 857060900
        },
        {
            "start": 857085340,
            "stop": 857085476
        }
    ]
}