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=2346
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=2347",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2345",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 2346,
    "results": [
        {
            "start": 871958127,
            "stop": 871960148
        },
        {
            "start": 871960165,
            "stop": 871960754
        },
        {
            "start": 871960771,
            "stop": 871961765
        },
        {
            "start": 871961782,
            "stop": 871962585
        },
        {
            "start": 871962602,
            "stop": 871963544
        },
        {
            "start": 871963580,
            "stop": 871967551
        },
        {
            "start": 871967568,
            "stop": 871970608
        },
        {
            "start": 871970625,
            "stop": 871975819
        },
        {
            "start": 871975836,
            "stop": 871976579
        },
        {
            "start": 871976596,
            "stop": 871978440
        },
        {
            "start": 871978457,
            "stop": 871982776
        },
        {
            "start": 871982793,
            "stop": 871984550
        },
        {
            "start": 871984630,
            "stop": 871986998
        },
        {
            "start": 871987015,
            "stop": 871987632
        },
        {
            "start": 871987649,
            "stop": 871992650
        },
        {
            "start": 871992730,
            "stop": 871998089
        },
        {
            "start": 871998106,
            "stop": 871998545
        },
        {
            "start": 871998579,
            "stop": 871998998
        },
        {
            "start": 871999015,
            "stop": 871999339
        },
        {
            "start": 871999356,
            "stop": 872000426
        }
    ]
}