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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT3/segments?format=api&page=5121",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT3/segments?format=api&page=5119",
    "results_count": 106145,
    "results_per_page": 20,
    "num_pages": 5308,
    "page_number": 5120,
    "results": [
        {
            "start": 873481631,
            "stop": 873481644
        },
        {
            "start": 873481653,
            "stop": 873481905
        },
        {
            "start": 873482129,
            "stop": 873482133
        },
        {
            "start": 873482141,
            "stop": 873482161
        },
        {
            "start": 873482179,
            "stop": 873482180
        },
        {
            "start": 873482187,
            "stop": 873482197
        },
        {
            "start": 873482520,
            "stop": 873482594
        },
        {
            "start": 873482605,
            "stop": 873482660
        },
        {
            "start": 873482668,
            "stop": 873483098
        },
        {
            "start": 873483115,
            "stop": 873483201
        },
        {
            "start": 873483211,
            "stop": 873483236
        },
        {
            "start": 873483256,
            "stop": 873483272
        },
        {
            "start": 873483282,
            "stop": 873483318
        },
        {
            "start": 873483326,
            "stop": 873483330
        },
        {
            "start": 873483341,
            "stop": 873483408
        },
        {
            "start": 873483420,
            "stop": 873483555
        },
        {
            "start": 873483563,
            "stop": 873484010
        },
        {
            "start": 873484017,
            "stop": 873484107
        },
        {
            "start": 873484115,
            "stop": 873484124
        },
        {
            "start": 873484132,
            "stop": 873484185
        }
    ]
}