24 endpoints que cubren clima actual y pronósticos de Open-Meteo, índices de calidad del aire (PM2.5, PM10, ozono), geolocalización IP, consultas de zona horaria, horarios de amanecer/atardecer, datos completos de países para 250 naciones, búsqueda de códigos postales en más de 60 países, datos de oleaje y marejada, seguimiento de vuelos en vivo vía ADS-B, predicciones de mareas NOAA para estaciones costeras de EE. UU. y búsqueda de geocodificación para convertir nombres de lugares en coordenadas.
URL base: https://nordapi.ee/api/v1
GET /weather/current
Obtenga current condiciones climáticas para cualquier location, including temperature, humidity, feels-like temperature, precipitation, wind speed and direction, and weather description code. Compatible con 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 para weather widgets, outdoor activity planners, and location-based apps.
lat
opcional
lon
opcional
city
opcional
curl "https://nordapi.ee/api/v1/weather/current?city=oslo"
GET /weather/forecast
Get a multi-day pronóstico del clima for hasta 16 days, with daily high/low temperaturas, precipitación probability, velocidad del viento, and weather codes. Supports coordenadas or city name lookup. Útil para planificación de viajes aplicaciones, event programando tools, agriculture paneles, and any feature that helps users plan around future condiciones climáticas. Data from Open-Meteo forecast models.
lat
opcional
lon
opcional
city
opcional
days
opcional
predeterminado: 7
curl "https://nordapi.ee/api/v1/weather/forecast?city=tokyo&days=7"
GET /weather/cities
Get the full list of 30 major cities that support city-name-based weather lookups. Returns city nombres and their coordenadas. Use this to populate city dropdown menus or validate user input before calling the weather endpoints. Covers global capitals and major urban centers across all continents.
curl https://nordapi.ee/api/v1/weather/cities
GET /weather/historical
Retrieve historical datos meteorológicos for any ubicación and rango de fechas from the Open-Meteo archive. Returns daily temperatura, precipitación, wind, and other weather variables for past dates. Requires latitude/longitude coordenadas and a rango de fechas. Útil para climate analysis, agricultural research, insurance claims verification, event post-mortems, and comparando current conditions to historical norms.
lat
requerido
lon
requerido
start_date
requerido
end_date
requerido
curl "https://nordapi.ee/api/v1/weather/historical?lat=59.9&lon=10.7&start_date=2025-01-01&end_date=2025-01-31"
GET /airquality/current
Obtenga current calidad del aire data para cualquier location on Earth, including PM2.5, PM10, ozone (O3), nitrogen dioxide (NO2), and an overall Air Quality Index (AQI) score. Requiere latitude and longitude coordinates. Esencial para health-conscious apps, outdoor exercise planners, allergy trackers, and environmental monitoring dashboards. Datos de Open-Meteo calidad del aire models.
lat
requerido
lon
requerido
curl "https://nordapi.ee/api/v1/airquality/current?lat=59.9&lon=10.7"
GET /airquality/forecast
Obtenga a 3-day hourly calidad del aire forecast para cualquier location, including predicted PM2.5, PM10, ozone, and AQI levels. Útil para planning outdoor activities, warning vulnerable populations about upcoming poor calidad del aire days, and crear proactive health notification systems. Datos de Open-Meteo forecast models.
lat
requerido
lon
requerido
curl "https://nordapi.ee/api/v1/airquality/forecast?lat=59.9&lon=10.7"
GET /geo/ip
Automatically geolocate the requesting client's IP address. Returns the detected IP, approximate latitude/longitude, city, region, país, timezone, and ISP información. No se necesitan parámetros - it uses the caller's IP. Útil para personalizing content by ubicación, auto-selecting language/currency, fraud detection, and analytics paneles that need to map user ubicaciones.
curl https://nordapi.ee/api/v1/geo/ip
GET /geo/ip/:ip
Geolocate any specific IPv4 or IPv6 address. Returns approximate latitude/longitude, city, region, país, timezone, and ISP información for the given IP. Útil para looking up the ubicación of server IPs, investigating suspicious login attempts, enriching log data with geographic context, and creando IP-based access control systems.
ip
requerido
curl https://nordapi.ee/api/v1/geo/ip/8.8.8.8
GET /geo/timezone
Look up timezone información by geographic coordenadas or timezone name. Returns the timezone identifier (e.g., Europe/Oslo), current local time, UTC offset, and DST status. Útil para programando aplicaciones that need to display times in a user's local timezone, meeting planners across time zones, and any feature that converts between UTC and local time.
lat
opcional
lon
opcional
zone
opcional
curl "https://nordapi.ee/api/v1/geo/timezone?lat=59.9&lon=10.7"
GET /geo/sun
Obtenga sunrise, sunset, solar noon, and civil/nautical/astronomical twilight times para cualquier location and date. Devuelve all times in UTC. Útil para photography apps (golden hour planning), outdoor activity schedulers, smart home lighting automation, religious observance apps, and solar energy production estimates. Especially relevant in Nordic regions with extreme daylight variations.
lat
requerido
lon
requerido
date
opcional
curl "https://nordapi.ee/api/v1/geo/sun?lat=59.9&lon=10.7"
GET /countrydata
Obtenga comprehensive data for all 250 countries and territories en todo el mundo, including official name, capital, population, area, region, subregion, languages, currencies, calling codes, top-level domains, borders, and flag information. A complete geographic reference dataset. Útil para crear country selector components, geography education tools, and reference applications.
curl https://nordapi.ee/api/v1/countrydata
GET /countrydata/search
Search países por nombre with fuzzy matching. Returns full país profiles for each match, incluyendo capital, population, region, languages, and currency. Útil para crear autocomplete país search fields and ubicación pickers where users might type partial or approximate país nombres.
q
requerido
curl "https://nordapi.ee/api/v1/countrydata/search?q=norway"
GET /countrydata/region/:region
Get all países within a geographic region (e.g., Europe, Asia, Africa, Americas, Oceania). Returns full país profiles for each nation in the region. Útil para crear region-filtered views, geographic analysis tools, and aplicaciones educativas that explore the world by continent.
region
requerido
curl https://nordapi.ee/api/v1/countrydata/region/europe
GET /countrydata/:code
Get the complete profile for a single país by its ISO 3166-1 alpha-2 code. Returns official name, capital, population, area, languages, divisas, calling codes, borders, region, subregion, and more. More efficient than fetching all 250 países when you only need one. Ideal para país detail pages and deep-dive geographic content.
code
requerido
curl https://nordapi.ee/api/v1/countrydata/NO
GET /zipcode/:country/:code
Look up a postal/zip code in 60+ países to get the associated city, state/province, and geographic coordenadas. Provide the código de país and postal code in the URL. Útil para address validation, auto-filling city and state fields in checkout forms, calculando shipping zones, and mapping postal code regions. Covers the US, Canada, most of Europe, and many other países.
country
requerido
code
requerido
curl https://nordapi.ee/api/v1/zipcode/us/90210
GET /zipcode/reverse
Find all postal/zip codes for a given city, state, and país. The reverse of a postal code lookup - you provide the ubicación and get back matching postal codes. Útil para generando postal code lists for delivery zone mapping, populating postal code fields from known city nombres, and creando geographic coverage analysis tools.
country
requerido
state
requerido
city
requerido
curl "https://nordapi.ee/api/v1/zipcode/reverse?country=us&state=CA&city=Beverly+Hills"
GET /marine/current
Obtenga current ocean conditions para cualquier coastal or open-water location, including wave height, wave direction, wave period, and swell data. Requiere latitude and longitude coordinates. Esencial para marine navigation apps, surfing and water sports planners, fishing trip tools, offshore operations dashboards, and coastal safety systems. Datos de Open-Meteo marine models.
lat
requerido
lon
requerido
curl "https://nordapi.ee/api/v1/marine/current?lat=59.9&lon=10.7"
GET /marine/forecast
Obtenga a multi-day marine pronóstico del clima with hourly wave height, wave direction, wave period, and swell predictions. Configurable up to 7 days ahead. Útil para planning sailing routes, scheduling offshore work, timing surf sessions, and crear marine safety alerting systems. Datos de Open-Meteo marine forecast models.
lat
requerido
lon
requerido
days
opcional
predeterminado: 7
curl "https://nordapi.ee/api/v1/marine/forecast?lat=59.9&lon=10.7"
GET /flights/live
Get real-time positions of aircraft currently in flight en todo el mundo from the OpenSky Network ADS-B data. Returns callsign, origin país, longitude, latitude, altitude, velocity, and heading for each aircraft. Optionally filter by a geographic bounding box to track flights over a specific area. Útil para flight rastreando aplicaciones, aviation paneles, noise monitoreando near airports, and visualizing air traffic patterns.
lamin
opcional
lomin
opcional
lamax
opcional
lomax
opcional
curl https://nordapi.ee/api/v1/flights/live
GET /tides/stations
List all available US coastal tide monitoreando stations from NOAA (National Oceanic and Atmospheric Administration). Returns station IDs, nombres, and ubicaciones. Use this to find valid station IDs for the tide prediction, water level, and temperatura endpoints. Covers major US coastal areas on the Atlantic, Pacific, and Gulf coasts.
curl https://nordapi.ee/api/v1/tides/stations
GET /tides/predictions/:station
Obtenga predicted high and low tide times and heights para un/una específico/a NOAA tide station. Devuelve upcoming tide events with timestamps and water levels. Esencial para coastal activity planning, marine navigation, fishing apps, and beach-going schedulers. Proporcione a valid NOAA station ID (use the stations endpoint to find IDs).
station
requerido
curl https://nordapi.ee/api/v1/tides/predictions/9414290
GET /tides/level/:station
Get the current real-time water level reading at a specific NOAA tide station. Returns the latest observed water level measurement. Útil para coastal flooding alerts, harbor management, dock scheduling, and comparando actual water levels to predicted tides. Data is from live NOAA sensors updated in near real-time.
station
requerido
curl https://nordapi.ee/api/v1/tides/level/9414290
GET /tides/temperature/:station
Obtenga the current water temperature reading at a specific NOAA tide station. Devuelve the latest observed sea surface temperature. Útil para swimming and water sports apps, marine biology monitoring, fishing condition tools, and coastal tourism features. Datos de live NOAA temperature sensors at US coastal stations.
station
requerido
curl https://nordapi.ee/api/v1/tides/temperature/9414290
GET /geocoding/search
Convert place nombres, addresses, or ubicación descripcións into geographic coordenadas (latitude and longitude). Returns matching ubicaciones with their nombres, países, coordenadas, elevation, population, and timezone. Supports fuzzy matching and returns multiple results ranked by relevance. Data from Open-Meteo geocoding powered by the GeoNames database. Esencial para any app that needs to convert user-typed ubicaciones into coordenadas for use with weather, map, or other ubicación-based APIs.
q
requerido
count
opcional
predeterminado: 10
curl "https://nordapi.ee/api/v1/geocoding/search?q=Oslo"