24 Endpunkte covering current und forecast weather from Open-Meteo, Luftqualität indexes (PM2.5, PM10, ozone), IP geolocation, timezone lookups, sunrise/sunset times, comprehensive country data for 250 nations, postal code lookups in 60+ countries, marine wave und swell data, live flight tracking via ADS-B, NOAA tide predictions for US coastal stations, und geocoding search to convert place names into coordinates.
Basis-URL: https://nordapi.ee/api/v1
GET /weather/current
Erhalten Sie current Wetterbedingungen for any location, einschließlich temperature, humidity, feels-like temperature, precipitation, wind speed und direction, und weather description code. Unterstützt lookup by latitude/longitude coordinates oder by city name (30 major cities supported). Data updated every 15 minutes from Open-Meteo, powered by national weather services. Ideal für weather widgets, outdoor activity planners, und location-based apps.
lat
optional
lon
optional
city
optional
curl "https://nordapi.ee/api/v1/weather/current?city=oslo"
GET /weather/forecast
Erhalten Sie eine multi-day Wettervorhersage for up to 16 days, with daily high/low temperatures, precipitation probability, wind speed, und weather codes. Unterstützt coordinates oder city name lookup. Nützlich für travel planning apps, event scheduling tools, agriculture dashboards, und any feature that helps users plan around future Wetterbedingungen. Daten von Open-Meteo forecast models.
lat
optional
lon
optional
city
optional
days
optional
Standard: 7
curl "https://nordapi.ee/api/v1/weather/forecast?city=tokyo&days=7"
GET /weather/cities
Erhalten Sie die vollständige list of 30 major cities that support city-name-based weather lookups. Liefert city names und their coordinates. Verwenden Sie dies to populate city dropdown menus oder validate user input before calling the weather endpoints. Umfasst global capitals und major urban centers across all continents.
curl https://nordapi.ee/api/v1/weather/cities
GET /weather/historical
Abrufen historischer Wetterdaten for any location und date range from the Open-Meteo archive. Liefert daily temperature, precipitation, wind, und other weather variables for past dates. Erfordert latitude/longitude coordinates und a date range. Nützlich für climate analysis, agricultural research, insurance claims verification, event post-mortems, und comparing current conditions to historical norms.
lat
erforderlich
lon
erforderlich
start_date
erforderlich
end_date
erforderlich
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
Erhalten Sie current Luftqualität data for any location on Earth, einschließlich PM2.5, PM10, ozone (O3), nitrogen dioxide (NO2), und an overall Air Quality Index (AQI) score. Erfordert latitude und longitude coordinates. Unverzichtbar für health-conscious apps, outdoor exercise planners, allergy trackers, und environmental monitoring dashboards. Daten von Open-Meteo Luftqualität models.
lat
erforderlich
lon
erforderlich
curl "https://nordapi.ee/api/v1/airquality/current?lat=59.9&lon=10.7"
GET /airquality/forecast
Erhalten Sie eine 3-day hourly Luftqualität forecast for any location, einschließlich predicted PM2.5, PM10, ozone, und AQI levels. Nützlich für planning outdoor activities, warning vulnerable populations about upcoming poor Luftqualität days, und building proactive health notification systems. Daten von Open-Meteo forecast models.
lat
erforderlich
lon
erforderlich
curl "https://nordapi.ee/api/v1/airquality/forecast?lat=59.9&lon=10.7"
GET /geo/ip
Automatische Geolokalisierung the requesting client's IP address. Liefert die detected IP, approximate latitude/longitude, city, region, country, timezone, und ISP information. Keine Parameter erforderlich - it uses the caller's IP. Nützlich für personalizing content by location, auto-selecting language/currency, fraud detection, und analytics dashboards that need to map user locations.
curl https://nordapi.ee/api/v1/geo/ip
GET /geo/ip/:ip
Geolocate any specific IPv4 oder IPv6 address. Liefert approximate latitude/longitude, city, region, country, timezone, und ISP information for the given IP. Nützlich für looking up the location of server IPs, investigating suspicious login attempts, enriching log data with geographic context, und building IP-based access control systems.
ip
erforderlich
curl https://nordapi.ee/api/v1/geo/ip/8.8.8.8
GET /geo/timezone
Nachschlagen von timezone information by geographic coordinates oder timezone name. Liefert die timezone identifier (e.g., Europe/Oslo), current local time, UTC offset, und DST status. Nützlich für scheduling apps that need to display times in a user's local timezone, meeting planners across time zones, und any feature that converts between UTC und local time.
lat
optional
lon
optional
zone
optional
curl "https://nordapi.ee/api/v1/geo/timezone?lat=59.9&lon=10.7"
GET /geo/sun
Erhalten Sie sunrise, sunset, solar noon, und civil/nautical/astronomical twilight times for any location und date. Liefert all times in UTC. Nützlich für photography apps (golden hour planning), outdoor activity schedulers, Smart-Home lighting automation, religious observance apps, und solar energy production estimates. Besonders relevant in Nordic regions with extreme daylight variations.
lat
erforderlich
lon
erforderlich
date
optional
curl "https://nordapi.ee/api/v1/geo/sun?lat=59.9&lon=10.7"
GET /countrydata
Erhalten Sie comprehensive data for all 250 countries und territories weltweit, einschließlich official name, capital, population, area, region, subregion, languages, currencies, calling codes, top-level domains, borders, und flag information. A complete geographic reference dataset. Nützlich für building country selector components, geography education tools, und reference applications.
curl https://nordapi.ee/api/v1/countrydata
GET /countrydata/search
Durchsuchen Sie countries by name with fuzzy matching. Liefert full country profiles for each match, einschließlich capital, population, region, languages, und currency. Nützlich für building autocomplete country search fields und location pickers where users might type partial oder approximate country names.
q
erforderlich
curl "https://nordapi.ee/api/v1/countrydata/search?q=norway"
GET /countrydata/region/:region
Erhalten Sie all countries within a geographic region (e.g., Europe, Asia, Africa, Americas, Oceania). Liefert full country profiles for each nation in the region. Nützlich für building region-filtered views, geographic analysis tools, und educational apps that explore the world by continent.
region
erforderlich
curl https://nordapi.ee/api/v1/countrydata/region/europe
GET /countrydata/:code
Erhalten Sie das vollständige Profil for a single country by its ISO 3166-1 alpha-2 code. Liefert official name, capital, population, area, languages, currencies, calling codes, borders, region, subregion, und mehr. More efficient than fetching all 250 countries when you only need one. Ideal für country detail pages und deep-dive geographic content.
code
erforderlich
curl https://nordapi.ee/api/v1/countrydata/NO
GET /zipcode/:country/:code
Nachschlagen von a postal/zip code in 60+ countries to get the associated city, state/province, und geographic coordinates. Geben Sie an: the country code und postal code in the URL. Nützlich für address validation, auto-filling city und state fields in checkout forms, calculating shipping zones, und mapping postal code regions. Umfasst the US, Canada, most of Europe, und many other countries.
country
erforderlich
code
erforderlich
curl https://nordapi.ee/api/v1/zipcode/us/90210
GET /zipcode/reverse
Finden Sie alle postal/zip codes for a given city, state, und country. The reverse of a postal code lookup - you provide the location und get back matching postal codes. Nützlich für generating postal code lists for delivery zone mapping, populating postal code fields from known city names, und building geographic coverage analysis tools.
country
erforderlich
state
erforderlich
city
erforderlich
curl "https://nordapi.ee/api/v1/zipcode/reverse?country=us&state=CA&city=Beverly+Hills"
GET /marine/current
Erhalten Sie current ocean conditions for any coastal oder open-water location, einschließlich wave height, wave direction, wave period, und swell data. Erfordert latitude und longitude coordinates. Unverzichtbar für marine navigation apps, surfing und water sports planners, fishing trip tools, offshore operations dashboards, und coastal safety systems. Daten von Open-Meteo marine models.
lat
erforderlich
lon
erforderlich
curl "https://nordapi.ee/api/v1/marine/current?lat=59.9&lon=10.7"
GET /marine/forecast
Erhalten Sie eine multi-day marine Wettervorhersage with hourly wave height, wave direction, wave period, und swell predictions. Konfigurierbar up to 7 days ahead. Nützlich für planning sailing routes, scheduling offshore work, timing surf sessions, und building marine safety alerting systems. Daten von Open-Meteo marine forecast models.
lat
erforderlich
lon
erforderlich
days
optional
Standard: 7
curl "https://nordapi.ee/api/v1/marine/forecast?lat=59.9&lon=10.7"
GET /flights/live
Erhalten Sie Echtzeit positions of aircraft currently in flight weltweit from the OpenSky Network ADS-B data. Liefert callsign, origin country, longitude, latitude, altitude, velocity, und heading for each aircraft. Optional filter by a geographic bounding box to track flights over a specific area. Nützlich für flight tracking apps, aviation dashboards, noise monitoring near airports, und visualizing air traffic patterns.
lamin
optional
lomin
optional
lamax
optional
lomax
optional
curl https://nordapi.ee/api/v1/flights/live
GET /tides/stations
Auflisten aller available US coastal tide monitoring stations from NOAA (National Oceanic und Atmospheric Administration). Liefert station IDs, names, und locations. Verwenden Sie dies to find valid station IDs for the tide prediction, water level, und temperature endpoints. Umfasst major US coastal areas on the Atlantic, Pacific, und Gulf coasts.
curl https://nordapi.ee/api/v1/tides/stations
GET /tides/predictions/:station
Erhalten Sie predicted high und low tide times und heights for a specific NOAA tide station. Liefert upcoming tide events with timestamps und water levels. Unverzichtbar für coastal activity planning, marine navigation, fishing apps, und beach-going schedulers. Geben Sie an: a valid NOAA station ID (use the stations Endpunkt to find IDs).
station
erforderlich
curl https://nordapi.ee/api/v1/tides/predictions/9414290
GET /tides/level/:station
Erhalten Sie den aktuellen Echtzeit water level reading at a specific NOAA tide station. Liefert die latest observed water level measurement. Nützlich für coastal flooding alerts, harbor management, dock scheduling, und comparing actual water levels to predicted tides. Data is from live NOAA sensors updated in near Echtzeit.
station
erforderlich
curl https://nordapi.ee/api/v1/tides/level/9414290
GET /tides/temperature/:station
Erhalten Sie den aktuellen water temperature reading at a specific NOAA tide station. Liefert die latest observed sea surface temperature. Nützlich für swimming und water sports apps, marine biology monitoring, fishing condition tools, und coastal tourism features. Daten von live NOAA temperature sensors at US coastal stations.
station
erforderlich
curl https://nordapi.ee/api/v1/tides/temperature/9414290
GET /geocoding/search
Konvertieren Sie Ortsnames, addresses, oder location descriptions into geographic coordinates (latitude und longitude). Liefert übereinstimmende locations with their names, countries, coordinates, elevation, population, und timezone. Unterstützt fuzzy matching und returns multiple results ranked by relevance. Daten von Open-Meteo geocoding powered by the GeoNames database. Unverzichtbar für any app that needs to convert user-typed locations into coordinates for use with weather, map, oder other location-based APIs.
q
erforderlich
count
optional
Standard: 10
curl "https://nordapi.ee/api/v1/geocoding/search?q=Oslo"