Explore

See what soaring forecast data can do in real products.

Convek returns structured fields for lift, cloudbase, usable height, wind, convergence, soundings, and corridor samples. These examples show how that data can become maps, route checks, instrument displays, and briefing tools.

One grid slice, one map layer
const res = await fetch(  "https://api.convek.dev/v1/grid?region=gb&resolution=4km&field=wstar_ms&time=14:00&west=-3.4&east=-1.4&south=51.7&north=53.0",  { headers: { Authorization: "Bearer cvk_live_your_key" } });const layer = await res.json();return {  field: layer.field,  units: layer.units,  bounds: layer.bounds,  rows: layer.grid_shape.south_north,  cols: layer.grid_shape.west_east,  values: layer.data,};