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=2333
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=2334",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2332",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 2333,
    "results": [
        {
            "start": 871771196,
            "stop": 871771210
        },
        {
            "start": 871771227,
            "stop": 871771248
        },
        {
            "start": 871771268,
            "stop": 871771278
        },
        {
            "start": 871771295,
            "stop": 871771371
        },
        {
            "start": 871771388,
            "stop": 871771508
        },
        {
            "start": 871771525,
            "stop": 871771598
        },
        {
            "start": 871771615,
            "stop": 871771650
        },
        {
            "start": 871771667,
            "stop": 871771675
        },
        {
            "start": 871771692,
            "stop": 871771702
        },
        {
            "start": 871771719,
            "stop": 871771751
        },
        {
            "start": 871771786,
            "stop": 871771816
        },
        {
            "start": 871771833,
            "stop": 871772369
        },
        {
            "start": 871772401,
            "stop": 871772465
        },
        {
            "start": 871772482,
            "stop": 871772492
        },
        {
            "start": 871772509,
            "stop": 871772511
        },
        {
            "start": 871772528,
            "stop": 871772537
        },
        {
            "start": 871772554,
            "stop": 871772633
        },
        {
            "start": 871772650,
            "stop": 871772812
        },
        {
            "start": 871772829,
            "stop": 871773008
        },
        {
            "start": 871773025,
            "stop": 871773046
        }
    ]
}