For instruments

Soaring forecast data for flight computers.

Instruments and companion apps need compact, predictable forecast data. Convek exposes thermal strength, usable height, cloudbase, wind, convergence, and route samples through stable JSON endpoints.

Pre-flight sync

Download a small set of site or route forecasts before launch.

Route context

Show expected lift, height, and wind changes along a planned line.

Offline summaries

Cache JSON responses in a companion app or device workflow before the pilot leaves coverage.

Example API call

Route sample using a bearer API key.

Request

curl "https://api.convek.dev/v1/corridor" \
-H "Authorization: Bearer cvk_live_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"region": "de",
"resolution": "4km",
"launch_lat": 48.08,
"launch_lon": 9.19,
"bearing_deg": 120,
"max_distance_km": 80,
"sample_spacing_km": 10,
"time": "13:00"
}'

Response

{
"valid_date": "2026-05-25",
"rasp_model": "de/4km",
"route": {
"launch_lat": 48.08,
"launch_lon": 9.19,
"bearing_deg": 120,
"max_distance_km": 80,
"sample_spacing_km": 10,
"time_aware": false
},
"samples": [
{
"along_track_km": 0,
"valid_time": "13:00",
"wstar_ms": 2.1,
"hglider_agl_m": 1780,
"cloudbase_agl_ft": 5900
}
]
}

Where it fits

Forecast layer

Convek

Use for thermal strength, cloudbase, usable height, convergence, soundings, grid slices, and route samples.

openAIP

Use for airspace, airports, navaids, obstacles, and flying-site records.

OGN

Use for live traffic, tracking, and replay where receiver coverage exists.

Open-Meteo

Use for generic rain, temperature, pressure, and fallback weather outside Convek regions.

Build against real soaring fields.

This page is for instrument makers and flight-computer builders who need data, not another forecast website.