GET /weather/current
Get current weather conditions for any location, including temperature, humidity, feels-like temperature, precipitation, wind speed and direction, and weather description code. Supports lookup by latitude/longitude coordinates or by city name (30 major cities supported). Data updated every 15 minutes from Open-Meteo, powered by national weather services. Ideal for weather widgets, outdoor activity planners, and location-based apps.
lat
optional
Latitude
lon
optional
Longitude
city
optional
City name
| Name | Required | Default | Description |
|---|---|---|---|
lat |
No | - | Latitude |
lon |
No | - | Longitude |
city |
No | - | City name |
curl "https://nordapi.ee/api/v1/weather/current?city=oslo"
curl "https://nordapi.ee/api/v1/weather/current?city=oslo"
curl "https://nordapi.ee/api/v1/weather/current?city=tokyo"
curl "https://nordapi.ee/api/v1/weather/current?lat=40.71&lon=-74.01"
{
"city": "oslo",
"data": {
"current": {
"apparent_temperature": 4.9,
"cloud_cover": 74,
"interval": 900,
"precipitation": 0.0,
"relative_humidity_2m": 86,
"temperature_2m": 7.5,
"time": "2026-04-05T17:45",
"weather_code": 2,
"wind_direction_10m": 225,
"wind_speed_10m": 10.4
},
"current_units": {
"apparent_temperature": "°C",
"cloud_cover": "%",
"interval": "seconds",
"precipitation": "mm",
"relative_humidity_2m": "%",
"temperature_2m": "°C",
"time": "iso8601",
"weather_code": "wmo code",
"wind_direction_10m": "°",
"wind_speed_10m": "km/h"
},
"elevation": 21.0,
"generationtime_ms": 0.12886524200439453,
"latitude": 59.915844,
"longitude": 10.760788,
"timezone": "Europe/Oslo",
"timezone_abbreviation": "GMT+2",
"utc_offset_seconds": 7200
},
"success": true
}