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=2299
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=2300",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2298",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 2299,
    "results": [
        {
            "start": 871315560,
            "stop": 871315740
        },
        {
            "start": 871315800,
            "stop": 871315980
        },
        {
            "start": 871316040,
            "stop": 871316744
        },
        {
            "start": 871316925,
            "stop": 871317890
        },
        {
            "start": 871317970,
            "stop": 871318790
        },
        {
            "start": 871318930,
            "stop": 871319550
        },
        {
            "start": 871319610,
            "stop": 871320125
        },
        {
            "start": 871320142,
            "stop": 871320300
        },
        {
            "start": 871320369,
            "stop": 871320485
        },
        {
            "start": 871320502,
            "stop": 871320530
        },
        {
            "start": 871320610,
            "stop": 871320630
        },
        {
            "start": 871320690,
            "stop": 871321854
        },
        {
            "start": 871321905,
            "stop": 871322461
        },
        {
            "start": 871322478,
            "stop": 871322627
        },
        {
            "start": 871322665,
            "stop": 871322870
        },
        {
            "start": 871322950,
            "stop": 871322977
        },
        {
            "start": 871322994,
            "stop": 871324132
        },
        {
            "start": 871324149,
            "stop": 871324368
        },
        {
            "start": 871324397,
            "stop": 871324773
        },
        {
            "start": 871324790,
            "stop": 871325883
        }
    ]
}