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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/H1_CBCLOW_CAT3/segments?format=api&page=8002",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/H1_CBCLOW_CAT3/segments?format=api&page=8000",
    "results_count": 164670,
    "results_per_page": 20,
    "num_pages": 8234,
    "page_number": 8001,
    "results": [
        {
            "start": 970322075,
            "stop": 970322096
        },
        {
            "start": 970322176,
            "stop": 970322186
        },
        {
            "start": 970322190,
            "stop": 970322195
        },
        {
            "start": 970322198,
            "stop": 970322203
        },
        {
            "start": 970322210,
            "stop": 970322211
        },
        {
            "start": 970322223,
            "stop": 970322341
        },
        {
            "start": 970322344,
            "stop": 970322348
        },
        {
            "start": 970322351,
            "stop": 970322376
        },
        {
            "start": 970322379,
            "stop": 970322402
        },
        {
            "start": 970322410,
            "stop": 970322458
        },
        {
            "start": 970322461,
            "stop": 970322462
        },
        {
            "start": 970322465,
            "stop": 970322470
        },
        {
            "start": 970322473,
            "stop": 970322501
        },
        {
            "start": 970322586,
            "stop": 970322635
        },
        {
            "start": 970322638,
            "stop": 970322643
        },
        {
            "start": 970322670,
            "stop": 970322678
        },
        {
            "start": 970322706,
            "stop": 970322720
        },
        {
            "start": 970322731,
            "stop": 970322769
        },
        {
            "start": 970322787,
            "stop": 970322866
        },
        {
            "start": 970322871,
            "stop": 970322911
        }
    ]
}