Data
Lagos weather (current + forecast) API
Current conditions and a multi-day forecast for Lagos, Nigeria — temperature, feels-like, humidity, wind, precipitation, and human-readable conditions (keyless, Open-Meteo). Answers 'weather in Lagos', 'Lagos forecast', 'is it raining in Lagos', 'temperature in Lagos right now'.
Price$0.01per request
MethodPOST
Route/v1/weather/lagos
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache1800s public
dataweatherlagosforecasttemperaturengconditions
API URL
Integration docshttps://x402.hexl.dev/v1/weather/lagosExample request
{
"days": 5
}Example response
{
"city": "Lagos",
"country": "NG",
"latitude": 6.5244,
"longitude": 3.3792,
"timezone": "Africa/Lagos",
"current": {
"observedAt": "2026-06-03T12:00",
"temperatureC": 22.4,
"feelsLikeC": 22.1,
"humidityPct": 60,
"windSpeedKmh": 11.2,
"precipitationMm": 0,
"conditions": "Partly cloudy"
},
"forecast": [
{
"date": "2026-06-03",
"conditions": "Partly cloudy",
"highC": 25.1,
"lowC": 17.3,
"precipitationMm": 0,
"precipitationChancePct": 10
}
]
}Input schema
{
"type": "object",
"properties": {
"days": {
"type": "number",
"minimum": 1,
"maximum": 16,
"examples": [
5
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}