Real-time weather data worldwide. Pass latitude and longitude to get current conditions. Free via Open-Meteo, no API key required. Use the geocoding API to convert a city name to coordinates.
https://api.apiclearinghouse.com/v1/call/weatherAuthenticate with X-Api-Key: chk_live_... header.
/current| Name | Type | Required | Description |
|---|---|---|---|
| latitude | number | required | Latitude (-90 to 90). Use the geocoding API to convert a city name to coordinates. |
| longitude | number | required | Longitude (-180 to 180). |
curl -s "https://api.apiclearinghouse.com/v1/call/weather/current?latitude={latitude}&longitude={longitude}" \
-H "X-Api-Key: YOUR_API_KEY"{
"status": "success",
"data": {
"time": "example",
"is_day": "example",
"weathercode": "example",
"temperature_c": "example",
"winddirection": "example"
}
}Monthly limits also apply per plan.