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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT3/segments?format=api&page=100",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT3/segments?format=api&page=98",
    "results_count": 97650,
    "results_per_page": 20,
    "num_pages": 4883,
    "page_number": 99,
    "results": [
        {
            "start": 932341207,
            "stop": 932343217
        },
        {
            "start": 932343222,
            "stop": 932343569
        },
        {
            "start": 932344192,
            "stop": 932350683
        },
        {
            "start": 932350702,
            "stop": 932350772
        },
        {
            "start": 932350791,
            "stop": 932350972
        },
        {
            "start": 932350990,
            "stop": 932354352
        },
        {
            "start": 932354371,
            "stop": 932355628
        },
        {
            "start": 932355633,
            "stop": 932356591
        },
        {
            "start": 932356596,
            "stop": 932373096
        },
        {
            "start": 932373139,
            "stop": 932373140
        },
        {
            "start": 932373195,
            "stop": 932373206
        },
        {
            "start": 932373291,
            "stop": 932373309
        },
        {
            "start": 932373337,
            "stop": 932373984
        },
        {
            "start": 932373989,
            "stop": 932374076
        },
        {
            "start": 932374083,
            "stop": 932374704
        },
        {
            "start": 932374734,
            "stop": 932374760
        },
        {
            "start": 932374795,
            "stop": 932374817
        },
        {
            "start": 932374846,
            "stop": 932374882
        },
        {
            "start": 932374901,
            "stop": 932375137
        },
        {
            "start": 932375161,
            "stop": 932375247
        }
    ]
}