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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CW_CAT1/segments?format=api&page=56",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CW_CAT1/segments?format=api&page=54",
    "results_count": 3094,
    "results_per_page": 20,
    "num_pages": 155,
    "page_number": 55,
    "results": [
        {
            "start": 943427119,
            "stop": 943441455
        },
        {
            "start": 943442272,
            "stop": 943446796
        },
        {
            "start": 943466491,
            "stop": 943469096
        },
        {
            "start": 943473699,
            "stop": 943499898
        },
        {
            "start": 943502768,
            "stop": 943509587
        },
        {
            "start": 943510098,
            "stop": 943512425
        },
        {
            "start": 943512970,
            "stop": 943514911
        },
        {
            "start": 943515624,
            "stop": 943519329
        },
        {
            "start": 943520181,
            "stop": 943522077
        },
        {
            "start": 943524739,
            "stop": 943527175
        },
        {
            "start": 943529578,
            "stop": 943530758
        },
        {
            "start": 943532211,
            "stop": 943532814
        },
        {
            "start": 943581969,
            "stop": 943586774
        },
        {
            "start": 943588248,
            "stop": 943593343
        },
        {
            "start": 943595302,
            "stop": 943598736
        },
        {
            "start": 943599779,
            "stop": 943601845
        },
        {
            "start": 943603124,
            "stop": 943604007
        },
        {
            "start": 943606173,
            "stop": 943606505
        },
        {
            "start": 943607558,
            "stop": 943608326
        },
        {
            "start": 943610698,
            "stop": 943618600
        }
    ]
}