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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT4/segments?format=api&page=8761",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT4/segments?format=api&page=8759",
    "results_count": 177886,
    "results_per_page": 20,
    "num_pages": 8895,
    "page_number": 8760,
    "results": [
        {
            "start": 873198347,
            "stop": 873198759
        },
        {
            "start": 873198776,
            "stop": 873200460
        },
        {
            "start": 873200477,
            "stop": 873200540
        },
        {
            "start": 873200557,
            "stop": 873201467
        },
        {
            "start": 873201484,
            "stop": 873201757
        },
        {
            "start": 873201775,
            "stop": 873201842
        },
        {
            "start": 873201880,
            "stop": 873201938
        },
        {
            "start": 873201962,
            "stop": 873201963
        },
        {
            "start": 873201990,
            "stop": 873202050
        },
        {
            "start": 873202083,
            "stop": 873202413
        },
        {
            "start": 873202430,
            "stop": 873202449
        },
        {
            "start": 873202466,
            "stop": 873202528
        },
        {
            "start": 873202545,
            "stop": 873202600
        },
        {
            "start": 873202617,
            "stop": 873202653
        },
        {
            "start": 873202671,
            "stop": 873202962
        },
        {
            "start": 873202979,
            "stop": 873203090
        },
        {
            "start": 873203118,
            "stop": 873203128
        },
        {
            "start": 873203146,
            "stop": 873203256
        },
        {
            "start": 873203273,
            "stop": 873203343
        },
        {
            "start": 873203360,
            "stop": 873203528
        }
    ]
}