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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT2/segments?format=api&page=346",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT2/segments?format=api&page=344",
    "results_count": 9439,
    "results_per_page": 20,
    "num_pages": 472,
    "page_number": 345,
    "results": [
        {
            "start": 862763080,
            "stop": 862764354
        },
        {
            "start": 862764428,
            "stop": 862768513
        },
        {
            "start": 862769663,
            "stop": 862770023
        },
        {
            "start": 862770130,
            "stop": 862772308
        },
        {
            "start": 862772327,
            "stop": 862772509
        },
        {
            "start": 862772531,
            "stop": 862773030
        },
        {
            "start": 862773541,
            "stop": 862775244
        },
        {
            "start": 862775266,
            "stop": 862775517
        },
        {
            "start": 862775541,
            "stop": 862775542
        },
        {
            "start": 862775573,
            "stop": 862778467
        },
        {
            "start": 862778491,
            "stop": 862780471
        },
        {
            "start": 862804891,
            "stop": 862804949
        },
        {
            "start": 862805249,
            "stop": 862813915
        },
        {
            "start": 862814025,
            "stop": 862814369
        },
        {
            "start": 862814669,
            "stop": 862834189
        },
        {
            "start": 862834211,
            "stop": 862840949
        },
        {
            "start": 862840971,
            "stop": 862845274
        },
        {
            "start": 862845296,
            "stop": 862849015
        },
        {
            "start": 862849034,
            "stop": 862853499
        },
        {
            "start": 862853548,
            "stop": 862853602
        }
    ]
}