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=300
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=301",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=299",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 300,
    "results": [
        {
            "start": 822754810,
            "stop": 822755770
        },
        {
            "start": 822755819,
            "stop": 822756236
        },
        {
            "start": 822756333,
            "stop": 822757445
        },
        {
            "start": 822757449,
            "stop": 822757813
        },
        {
            "start": 822757843,
            "stop": 822757844
        },
        {
            "start": 822757930,
            "stop": 822758230
        },
        {
            "start": 822773444,
            "stop": 822773504
        },
        {
            "start": 822773590,
            "stop": 822773929
        },
        {
            "start": 822774070,
            "stop": 822774410
        },
        {
            "start": 822774550,
            "stop": 822774650
        },
        {
            "start": 822774730,
            "stop": 822776282
        },
        {
            "start": 822776289,
            "stop": 822776290
        },
        {
            "start": 822776440,
            "stop": 822776510
        },
        {
            "start": 822776590,
            "stop": 822776652
        },
        {
            "start": 822776659,
            "stop": 822777313
        },
        {
            "start": 822777490,
            "stop": 822777733
        },
        {
            "start": 822777746,
            "stop": 822777747
        },
        {
            "start": 822779149,
            "stop": 822779270
        },
        {
            "start": 822779350,
            "stop": 822779810
        },
        {
            "start": 822779818,
            "stop": 822779979
        }
    ]
}