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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_DATA/segments?format=api&page=181",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_DATA/segments?format=api&page=179",
    "results_count": 6293,
    "results_per_page": 20,
    "num_pages": 315,
    "page_number": 180,
    "results": [
        {
            "start": 847346207,
            "stop": 847355366
        },
        {
            "start": 847355903,
            "stop": 847374813
        },
        {
            "start": 847377479,
            "stop": 847379484
        },
        {
            "start": 847379692,
            "stop": 847383076
        },
        {
            "start": 847383822,
            "stop": 847394788
        },
        {
            "start": 847400989,
            "stop": 847416988
        },
        {
            "start": 847424279,
            "stop": 847430020
        },
        {
            "start": 847430082,
            "stop": 847432997
        },
        {
            "start": 847433083,
            "stop": 847438919
        },
        {
            "start": 847439563,
            "stop": 847441364
        },
        {
            "start": 847442099,
            "stop": 847447542
        },
        {
            "start": 847447616,
            "stop": 847452085
        },
        {
            "start": 847452260,
            "stop": 847453237
        },
        {
            "start": 847454294,
            "stop": 847459763
        },
        {
            "start": 847463449,
            "stop": 847466046
        },
        {
            "start": 847467972,
            "stop": 847468324
        },
        {
            "start": 847468524,
            "stop": 847470403
        },
        {
            "start": 847470464,
            "stop": 847471245
        },
        {
            "start": 847480561,
            "stop": 847482685
        },
        {
            "start": 847482821,
            "stop": 847483251
        }
    ]
}