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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=8902",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=8900",
    "results_count": 182857,
    "results_per_page": 20,
    "num_pages": 9143,
    "page_number": 8901,
    "results": [
        {
            "start": 873331741,
            "stop": 873332009
        },
        {
            "start": 873332028,
            "stop": 873332128
        },
        {
            "start": 873332147,
            "stop": 873332160
        },
        {
            "start": 873332179,
            "stop": 873333727
        },
        {
            "start": 873333745,
            "stop": 873335977
        },
        {
            "start": 873335994,
            "stop": 873336237
        },
        {
            "start": 873336257,
            "stop": 873336829
        },
        {
            "start": 873336849,
            "stop": 873338264
        },
        {
            "start": 873338842,
            "stop": 873339061
        },
        {
            "start": 873339078,
            "stop": 873339591
        },
        {
            "start": 873339610,
            "stop": 873341205
        },
        {
            "start": 873341224,
            "stop": 873341393
        },
        {
            "start": 873341410,
            "stop": 873341715
        },
        {
            "start": 873341734,
            "stop": 873341738
        },
        {
            "start": 873341757,
            "stop": 873341869
        },
        {
            "start": 873341894,
            "stop": 873342028
        },
        {
            "start": 873342045,
            "stop": 873342243
        },
        {
            "start": 873342262,
            "stop": 873342300
        },
        {
            "start": 873342480,
            "stop": 873342547
        },
        {
            "start": 873342566,
            "stop": 873342605
        }
    ]
}