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=2351
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=2352",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2350",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 2351,
    "results": [
        {
            "start": 872120529,
            "stop": 872121387
        },
        {
            "start": 872121394,
            "stop": 872122010
        },
        {
            "start": 872122150,
            "stop": 872123024
        },
        {
            "start": 872123063,
            "stop": 872123800
        },
        {
            "start": 872123817,
            "stop": 872124512
        },
        {
            "start": 872124520,
            "stop": 872124700
        },
        {
            "start": 872124717,
            "stop": 872125440
        },
        {
            "start": 872125500,
            "stop": 872125811
        },
        {
            "start": 872125818,
            "stop": 872125980
        },
        {
            "start": 872126040,
            "stop": 872126065
        },
        {
            "start": 872126072,
            "stop": 872126220
        },
        {
            "start": 872126280,
            "stop": 872126303
        },
        {
            "start": 872126310,
            "stop": 872126340
        },
        {
            "start": 872126476,
            "stop": 872126520
        },
        {
            "start": 872126700,
            "stop": 872126739
        },
        {
            "start": 872126940,
            "stop": 872126961
        },
        {
            "start": 872126997,
            "stop": 872127060
        },
        {
            "start": 872127132,
            "stop": 872127167
        },
        {
            "start": 872127179,
            "stop": 872127180
        },
        {
            "start": 872127360,
            "stop": 872127504
        }
    ]
}