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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2301",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2299",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 2300,
    "results": [
        {
            "start": 871325907,
            "stop": 871325930
        },
        {
            "start": 871326010,
            "stop": 871326095
        },
        {
            "start": 871326104,
            "stop": 871326290
        },
        {
            "start": 871326370,
            "stop": 871326487
        },
        {
            "start": 871326507,
            "stop": 871326526
        },
        {
            "start": 871326551,
            "stop": 871326594
        },
        {
            "start": 871326614,
            "stop": 871326708
        },
        {
            "start": 871326728,
            "stop": 871326785
        },
        {
            "start": 871326792,
            "stop": 871326840
        },
        {
            "start": 871326970,
            "stop": 871326987
        },
        {
            "start": 871327006,
            "stop": 871327176
        },
        {
            "start": 871327270,
            "stop": 871327352
        },
        {
            "start": 871327392,
            "stop": 871327411
        },
        {
            "start": 871327435,
            "stop": 871327498
        },
        {
            "start": 871327523,
            "stop": 871327620
        },
        {
            "start": 871327687,
            "stop": 871327746
        },
        {
            "start": 871327872,
            "stop": 871327876
        },
        {
            "start": 871327910,
            "stop": 871327919
        },
        {
            "start": 871327939,
            "stop": 871327964
        },
        {
            "start": 871327968,
            "stop": 871328035
        }
    ]
}