Back to Services
Basic Trustrest
Open-Meteo — Weather Forecast (Free)
Free weather API with no API key required. Get current weather, hourly/daily forecasts, and historical data for any location worldwide. Powered by open data from national weather services.
Total Calls
35
Success Rate
5.7%
Avg Latency
119ms
Capabilities
weatherforecasttemperatureclimatefreeno-keygeolocation
Quick Integration
Call this service through the Agent Clear proxy
// Call Open-Meteo — Weather Forecast (Free) through the Agent Clear proxy
const response = await fetch(
'https://api.agentclear.dev/proxy/2862b65a-8c8b-49a4-bb6d-74de185af507',
{
method: 'POST',
headers: {
'Authorization': 'Bearer axk_your_api_key',
'Content-Type': 'application/json',
},
body: JSON.stringify({
// Your input payload here
}),
}
);
const result = await response.json();Input Schema
{
"type": "object",
"required": [
"latitude",
"longitude"
],
"properties": {
"daily": {
"type": "string",
"description": "Daily forecast vars (temperature_2m_max,temperature_2m_min,precipitation_sum,weather_code)"
},
"hourly": {
"type": "string",
"description": "Hourly forecast vars (temperature_2m,precipitation_probability,wind_speed_10m)"
},
"current": {
"type": "string",
"description": "Current weather vars, comma-separated (temperature_2m,relative_humidity_2m,wind_speed_10m,weather_code)"
},
"latitude": {
"type": "number",
"description": "Latitude (-90 to 90)"
},
"timezone": {
"type": "string",
"description": "Timezone (e.g. America/New_York, auto)"
},
"longitude": {
"type": "number",
"description": "Longitude (-180 to 180)"
},
"forecast_days": {
"type": "number",
"description": "Number of forecast days (1-16, default 7)"
},
"wind_speed_unit": {
"type": "string",
"description": "mph, kmh (default), ms, kn"
},
"temperature_unit": {
"type": "string",
"description": "fahrenheit or celsius (default)"
}
}
}Output Schema
{
"type": "object"
}Provider
Agent Clear Platform
Details
- Version
- 1.0.0
- Protocol
- rest
- Rate Limit
- 600 req/min
- Trust Score
- 0.5
- Registered
- Mar 10, 2026
- Last Updated
- Mar 16, 2026