Access comprehensive climate data, weather forecasts, and environmental monitoring through our Climate API
Access real-time weather data, climate forecasts, and environmental monitoring through our powerful Climate API. Get accurate weather predictions, climate trends, and environmental data for any location worldwide.
Real-time weather information including temperature, humidity, precipitation, wind speed, and atmospheric pressure.
Accurate weather forecasts with short-term and long-term predictions using advanced meteorological models.
Historical climate data and trend analysis for understanding long-term climate patterns and changes.
Environmental data including air quality, UV index, pollen count, and other environmental factors.
Real-time weather conditions including temperature, humidity, wind, and atmospheric pressure.
Detailed weather forecasts from 1 hour to 14 days ahead with hourly and daily predictions.
Historical weather and climate data spanning decades for trend analysis and research.
Environmental monitoring data including air quality, UV index, and other environmental factors.
The Ekagni Climate API provides comprehensive access to weather data, climate information, and environmental monitoring. Our RESTful API delivers accurate, real-time climate data for any location worldwide.
https://api.ekagni.com/v1/climate
Bearer Token (API Key)
JSON
1000 requests/hour (free tier)
All API requests require authentication using your API key. Include your API key in the Authorization header.
curl -X GET "https://api.ekagni.com/v1/climate/current" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
Get current weather conditions for a specific location.
lat, lon - Coordinatesunits - Temperature units (metric/imperial)lang - Language for descriptionsGet weather forecast for a specific location and time range.
lat, lon - Coordinatesdays - Forecast days (1-14)hourly - Hourly forecast (true/false)Get historical weather data for a specific location and date range.
lat, lon - Coordinatesstart_date, end_date - Date rangeresolution - Data resolution (hourly/daily)curl -X GET "https://api.ekagni.com/v1/climate/current" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"lat": 37.7749,
"lon": -122.4194,
"units": "metric"
}'
import requests
url = "https://api.ekagni.com/v1/climate/current"
headers = {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
}
data = {
"lat": 37.7749,
"lon": -122.4194,
"units": "metric"
}
response = requests.get(url, headers=headers, json=data)
weather_data = response.json()
print(f"Temperature: {weather_data['temperature']}°C")
const response = await fetch('https://api.ekagni.com/v1/climate/current', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
lat: 37.7749,
lon: -122.4194,
units: 'metric'
})
});
const weatherData = await response.json();
console.log(`Temperature: ${weatherData.temperature}°C`);
Weather data for crop planning, irrigation scheduling, and harvest optimization.
Weather forecasts for renewable energy production and grid management.
Weather data for route optimization and safety planning.
Weather data for risk assessment and claims processing.
Start building with Ekagni's comprehensive climate data API