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=8999
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=9000",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=8998",
    "results_count": 182857,
    "results_per_page": 20,
    "num_pages": 9143,
    "page_number": 8999,
    "results": [
        {
            "start": 873912258,
            "stop": 873912263
        },
        {
            "start": 873912286,
            "stop": 873912292
        },
        {
            "start": 873912314,
            "stop": 873912323
        },
        {
            "start": 873939716,
            "stop": 873939987
        },
        {
            "start": 873940006,
            "stop": 873940236
        },
        {
            "start": 873940253,
            "stop": 873940461
        },
        {
            "start": 873940478,
            "stop": 873940598
        },
        {
            "start": 873940618,
            "stop": 873941883
        },
        {
            "start": 873941906,
            "stop": 873942411
        },
        {
            "start": 873942430,
            "stop": 873942446
        },
        {
            "start": 873942465,
            "stop": 873942899
        },
        {
            "start": 873942918,
            "stop": 873943109
        },
        {
            "start": 873943131,
            "stop": 873943156
        },
        {
            "start": 873943185,
            "stop": 873943681
        },
        {
            "start": 873943941,
            "stop": 873944118
        },
        {
            "start": 873944138,
            "stop": 873944140
        },
        {
            "start": 873944159,
            "stop": 873944164
        },
        {
            "start": 873944200,
            "stop": 873944231
        },
        {
            "start": 873944258,
            "stop": 873944355
        },
        {
            "start": 873944388,
            "stop": 873944881
        }
    ]
}