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=2343
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=2344",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2342",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 2343,
    "results": [
        {
            "start": 871881663,
            "stop": 871883147
        },
        {
            "start": 871883164,
            "stop": 871884497
        },
        {
            "start": 871884514,
            "stop": 871885487
        },
        {
            "start": 871885504,
            "stop": 871886073
        },
        {
            "start": 871886090,
            "stop": 871894225
        },
        {
            "start": 871894242,
            "stop": 871895296
        },
        {
            "start": 871895313,
            "stop": 871895782
        },
        {
            "start": 871895799,
            "stop": 871898750
        },
        {
            "start": 871898767,
            "stop": 871904270
        },
        {
            "start": 871904350,
            "stop": 871906401
        },
        {
            "start": 871906424,
            "stop": 871907570
        },
        {
            "start": 871907650,
            "stop": 871909604
        },
        {
            "start": 871909621,
            "stop": 871909667
        },
        {
            "start": 871909684,
            "stop": 871910207
        },
        {
            "start": 871910224,
            "stop": 871910849
        },
        {
            "start": 871910888,
            "stop": 871912159
        },
        {
            "start": 871912176,
            "stop": 871912727
        },
        {
            "start": 871912744,
            "stop": 871914403
        },
        {
            "start": 871914420,
            "stop": 871914900
        },
        {
            "start": 871914960,
            "stop": 871915142
        }
    ]
}