← Alle API-Produkte

Finanzen & Währung API

40 Endpunkte for Echtzeit und historical Wechselkurse across 30 currencies, Kryptowährung prices from CoinGecko, commodity Spotpreiss (gold, oil, metals), VAT calculations for 32 EU/EEA countries, World Bank economic indicators for 200+ nations, und US congressional stock trade disclosures. Built for fintech apps, trading dashboards, pricing engines, und economic research.

KOSTENLOS 43 Endpunkte 100 Anfr./Std.
Basis-URL: https://nordapi.ee/api/v1

Alle Währungen auflisten

GET /currencies
Details →

Erhalten Sie die vollständige Liste of all 30 supported fiat currencies with their ISO 4217 codes, full names, und symbols. Verwenden Sie dies to populate currency dropdowns, validate user input, oder discover which currencies are available across all Wechselkurs endpoints. Umfasst major world currencies einschließlich USD, EUR, GBP, NOK, SEK, JPY, und 24 more.

curl https://nordapi.ee/api/v1/currencies

Aktuelle Wechselkurse

GET /latest
Details →

Erhalten Sie die heutigen Wechselkurse for any of the 30 supported base currencies against all other currencies oder a filtered subset. Liefert die rate date und a map of currency-to-rate pairs. Rates are updated daily from the European Central Bank (ECB). Ideal für currency converters, financial dashboards, pricing pages, und any app that needs current FX rates.

Parameter
base optional Standard: EUR
Base currency code
symbols optional
Comma-separated target currencies
curl "https://nordapi.ee/api/v1/latest?base=USD&symbols=EUR,GBP,NOK"

Währung umrechnen

GET /convert
Details →

Konvertieren Sie einen specific monetary amount from one currency to another using the latest Wechselkurse. Unterstützt an optional margin parameter for adding business markup (e.g., 2% fee on top of the market rate), und an optional date parameter for historical conversions. Liefert die converted amount, the rate used, und query details. Ideal für e-commerce checkout flows, invoicing systems, und travel budget tools.

Parameter
from erforderlich
Source currency
to erforderlich
Target currency
amount erforderlich
Amount to convert
margin optional
Business markup percentage
date optional
Historical date (YYYY-MM-DD)
curl "https://nordapi.ee/api/v1/convert?from=USD&to=EUR&amount=100"

Stapelkonvertierung

GET /convert/batch
Details →

Konvertieren Sie einen single amount from one base currency into multiple target currencies in a single API call. Liefert die converted amount und Wechselkurs for each target currency. Wesentlich effizienter than making individual conversion requests when you need to display prices in multiple currencies simultaneously, wie z. B. on international pricing pages oder multi-currency shopping carts.

Parameter
from erforderlich
Source currency
amount erforderlich
Amount
to erforderlich
Comma-separated target currencies
curl "https://nordapi.ee/api/v1/convert/batch?from=USD&amount=100&to=EUR,GBP,NOK"

Historische Kurse

GET /historical/:date
Details →

Abrufen von Wechselrates for any specific past date. Geben Sie an: a date in YYYY-MM-DD format in the URL path, und optionally filter by base currency und target symbols. Nützlich für generating historical invoices, auditing past transactions, back-testing trading strategies, und building Wechselkurs charts. Daten von ECB daily reference rates.

Parameter
date erforderlich
Date in URL (YYYY-MM-DD)
base optional Standard: EUR
Base currency
symbols optional
Target currencies
curl "https://nordapi.ee/api/v1/historical/2026-03-15?base=USD"

Zeitreihen

GET /timeseries
Details →

Erhalten Sie daily Wechselkurse for every day within a specified date range. Liefert eine map of dates to rate objects, ideal für plotting Wechselkurs charts und trend lines, performing time-series analysis, oder calculating moving averages. Unterstützt filtering by base currency und target symbols to keep response sizes manageable over longer date ranges.

Parameter
start_date erforderlich
Start date
end_date erforderlich
End date
base optional
Base currency
symbols optional
Target currencies
curl "https://nordapi.ee/api/v1/timeseries?start_date=2026-03-01&end_date=2026-03-15&base=USD&symbols=EUR"

Schwankung / Änderung

GET /fluctuation
Details →

Berechnen Sie, wie Wechselkurse changed between two specific dates, returning the start rate, end rate, absolute change, und percentage change for each currency pair. Nützlich für financial reports showing currency movement, alerting systems that track FX volatility, und dashboards that display how currencies performed over a given period.

Parameter
start_date erforderlich
Start date
end_date erforderlich
End date
base optional
Base currency
symbols optional
Target currencies
curl "https://nordapi.ee/api/v1/fluctuation?start_date=2026-03-19&end_date=2026-03-20&base=EUR&symbols=USD,GBP"

Währungsranglisten

GET /rankings
Details →

Ordnen Sie alle 30 supported currencies by their daily performance against a chosen base currency. Jeder entry includes the currency code, current rate, percentage change, und direction (up/down). Ideal für building currency leaderboards, market overview screens, und identifying the day's strongest und weakest currencies at a glance.

Parameter
base optional Standard: EUR
Base currency
curl "https://nordapi.ee/api/v1/rankings?base=EUR"

Kreuzkurs-Matrix

GET /matrix
Details →

Generieren Sie eine full NxN cross-rate table for any selection of currencies. Jeder currency is shown against every other currency in a single response, like the Wechselkurs boards at airports. Nützlich für forex comparison tables, travel apps showing multiple currency pairs, und financial dashboards that need to display all possible combinations at once.

Parameter
currencies erforderlich
Comma-separated codes (e.g. USD,EUR,GBP,NOK)
curl "https://nordapi.ee/api/v1/matrix?currencies=USD,EUR,GBP,NOK"

Währungspaar-Details

GET /pair/:base/:target
Details →

Erhalten Sie eine detailed profile for a specific currency pair, einschließlich the latest rate, recent historical rates, und percentage change over time. Designed for building dedicated currency pair pages (e.g., EUR/USD detail view) with trend information. Fokussierter than the general rates endpoint, giving you pair-specific analytics in one call.

Parameter
base erforderlich
Base currency in URL
target erforderlich
Target currency in URL
curl https://nordapi.ee/api/v1/pair/EUR/USD

Gleitender Durchschnitt (SMA)

GET /sma
Details →

Berechnen Sie den Simple Moving Average (SMA) for any currency pair over a configurable number of days (default 30). The SMA smooths out daily rate fluctuations to reveal the underlying trend. Weit verbreitet in technical analysis for forex trading signals - when the current rate crosses above oder below the SMA, it can indicate trend reversals. Auch nützlich for setting fair Wechselkurse in business contracts.

Parameter
base erforderlich
Base currency
target erforderlich
Target currency
period optional Standard: 30
Number of days
curl "https://nordapi.ee/api/v1/sma?base=EUR&target=USD&period=14"

Volatilität

GET /volatility
Details →

Messen Sie die volatility of a currency pair by calculating the standard deviation of daily rate changes over a configurable period (default 30 days). Liefert die volatility score und mean daily change percentage. Unverzichtbar für risk assessment in international trade, hedging decisions, setting appropriate margins on currency conversion services, und understanding how stable oder turbulent a currency pair has been recently.

Parameter
base erforderlich
Base currency
target erforderlich
Target currency
period optional Standard: 30
Days
curl "https://nordapi.ee/api/v1/volatility?base=EUR&target=USD"

Hoch / Tief / Durchschnitt

GET /range
Details →

Finden Sie die minimum, maximum, und average Wechselkurs for any currency pair over a custom date range. Liefert die exact dates when the high und low occurred, making it easy to identify the best und worst conversion moments. Nützlich für negotiating contract rates, analyzing seasonal currency patterns, und providing users with context about current rates relative to recent history.

Parameter
base erforderlich
Base currency
target erforderlich
Target currency
start_date erforderlich
Start date
end_date erforderlich
End date
curl "https://nordapi.ee/api/v1/range?base=EUR&target=USD&start_date=2026-03-19&end_date=2026-03-24"

Periodenvergleich

GET /compare
Details →

Vergleichen Sie ein currency pair's current rate against its rate from yesterday, 1 week ago, 1 month ago, 3 months ago, und 1 year ago, with percentage change for each period. Gives instant context about whether a currency is trending up oder down over different timeframes. Ideal für currency converter apps that want to show users if now is a good oder bad time to exchange.

Parameter
base erforderlich
Base currency
target erforderlich
Target currency
curl "https://nordapi.ee/api/v1/compare?base=EUR&target=USD"

Arbitrage-Erkennung

GET /arbitrage
Details →

Suchen Sie nach triangular arbitrage opportunities across a set of currencies. Triangular arbitrage exploits pricing inconsistencies when converting through three currencies (e.g., USD->EUR->GBP->USD) yields more than the starting amount. Liefert alle detected opportunities with the currency path und profit percentage. Educational tool for understanding FX markets, und nützlich für fintech apps demonstrating market efficiency concepts.

Parameter
currencies optional Standard: USD,EUR,GBP,JPY,CHF,CAD,AUD
Comma-separated currencies
curl "https://nordapi.ee/api/v1/arbitrage?currencies=USD,EUR,GBP,JPY,NOK"

Länder auflisten

GET /countries
Details →

Erhalten Sie all 49 countries supported by the currency system, each with their ISO country code, full name, official currency code, geographic region, und flag emoji. Optional filter by region (e.g., Europe, Asia). Nützlich für building country selectors in currency apps, mapping which countries use which currencies, und populating geo-filtered dropdowns.

Parameter
region optional
Filter by region
curl https://nordapi.ee/api/v1/countries

Länderdetails

GET /countries/:code
Details →

Nachschlagen von detailed currency information for a specific country by its ISO country code. Liefert die country name, currency code, geographic region, und flag emoji. Useful when you know the country und need to determine its currency for conversion oder display purposes, wie z. B. auto-detecting a user's currency from their country setting.

Parameter
code erforderlich
ISO country code in URL
curl https://nordapi.ee/api/v1/countries/NO

Länder nach Währung

GET /currencies/:code/countries
Details →

Finden Sie alle countries that use a specific currency. For example, querying EUR returns all 20 Eurozone nations. Liefert country codes und names for each match. Nützlich für understanding the geographic reach of a currency, building educational tools, oder determining which countries are affected when a particular currency fluctuates.

Parameter
code erforderlich
Currency code in URL
curl https://nordapi.ee/api/v1/currencies/EUR/countries

Historisches Archiv (Datum)

GET /history/date/:date
Details →

Zugriff auf das deep historical Wechselkurs archive with data going back to January 1999, sourced from the European Central Bank. Abrufen von rates for any single date in the archive by providing it in the URL path. Unterstützt base currency und symbol filtering. Ideal für academic research, long-term trend analysis, historical financial reporting, und apps that need Wechselkurse from specific past events.

Parameter
date erforderlich
Date in URL (YYYY-MM-DD)
base optional
Base currency
symbols optional
Target currencies
curl "https://nordapi.ee/api/v1/history/date/2008-09-15?base=USD&symbols=EUR,GBP"

Historisches Archiv (Zeitraum)

GET /history/range
Details →

Abrufen von Wechselrates for every day within a historical date range from the ECB archive (back to 1999). Liefert daily rates for the specified base und target currencies across the entire range. Ideal für building long-term Wechselkurs charts, academic datasets, economic history visualizations, und backtesting financial models across months oder years of data.

Parameter
start erforderlich
Start date
end erforderlich
End date
base optional
Base currency
symbols optional
Target currencies
curl "https://nordapi.ee/api/v1/history/range?start=2020-01-01&end=2020-06-30&base=USD&symbols=EUR"

Bedeutende Daten in der Devisengeschichte

GET /history/significant
Details →

Erhalten Sie eine curated list of historically significant dates in financial history - events like the Lehman Brothers collapse (2008-09-15), the Brexit vote (2016-06-24), the COVID crash (2020-03-12), und mehr - each paired with Wechselkurs data from that date. Nützlich für educational apps, financial history timelines, und demonstrating how major world events impact currency markets.

curl https://nordapi.ee/api/v1/history/significant

Krypto-Preise

GET /crypto/prices
Details →

Erhalten Sie current prices, market capitalization, 24-hour trading volume, und 24h/7d percentage changes for the top 250 Kryptowährungen by market cap. Daten von CoinGecko und updated frequently. Konfigurierbar limit parameter lets you fetch just the top 5 oder up to 250 coins. Unverzichtbar für crypto portfolio trackers, market overview dashboards, und price alert systems.

Parameter
limit optional Standard: 100
Number of coins (max 250)
curl https://nordapi.ee/api/v1/crypto/prices?limit=5

Kryptowährungs-Details

GET /crypto/:coin_id
Details →

Erhalten Sie comprehensive details for a specific Kryptowährung by its CoinGecko ID oder ticker symbol (e.g., 'bitcoin' oder 'BTC'). Liefert die coin's current price, market cap, trading volume, price changes, und metadata. Nützlich für building dedicated coin detail pages, comparing specific tokens, oder fetching data for a user's favorite coins without downloading the entire top-250 list.

Parameter
coin_id erforderlich
CoinGecko ID or symbol (e.g. bitcoin, BTC)
curl https://nordapi.ee/api/v1/crypto/bitcoin

Krypto-zu-Fiat-Umrechnung

GET /crypto/convert
Details →

Konvertieren Sie jeden Kryptowährung amount into any of the 30 supported fiat currencies using live CoinGecko prices und ECB Wechselkurse. Liefert die conversion rate und calculated result. Ideal für crypto portfolio apps that need to show holdings in local currency, payment processors converting crypto to fiat, und trading tools that need quick fiat-equivalent calculations.

Parameter
coin erforderlich
Coin ID
to erforderlich
Target fiat currency
amount optional Standard: 1
Amount of crypto
curl "https://nordapi.ee/api/v1/crypto/convert?coin=bitcoin&to=NOK&amount=1"

Krypto-Preisverlauf

GET /crypto/history/:coin_id
Details →

Erhalten Sie historical price snapshots for any of the top 50 Kryptowährungen. Preise are recorded every 10 minutes, giving up to 144 data points per day per coin. Filtern Sie by date range oder limit the number of results. Ideal für building price charts, backtesting strategies, und tracking price trends over time.

Parameter
limit optional Standard: 144
Max data points (up to 1000)
start_date optional
Start date (YYYY-MM-DD)
end_date optional
End date (YYYY-MM-DD)
curl "https://nordapi.ee/api/v1/crypto/history/bitcoin?limit=10"

Krypto-OHLC

GET /crypto/ohlc/:coin_id
Details →

Erhalten Sie Open/High/Low/Close price data for a Kryptowährung on a specific date. Computed from the 10-minute snapshots stored throughout the day. Ideal für candlestick charts und daily price summaries.

Parameter
date optional Standard: today
Date (YYYY-MM-DD)
curl "https://nordapi.ee/api/v1/crypto/ohlc/bitcoin?date=2026-03-28"

Krypto-Historienzusammenfassung

GET /crypto/summary/:coin_id
Details →

Erhalten Sie aggregate statistics for a coin's price history: total data points, date range covered, und min/max/average USD prices. Nützlich für understanding how much historical data is available und getting a quick statistical overview.

curl https://nordapi.ee/api/v1/crypto/summary/bitcoin

Alle Rohstoffe

GET /commodities
Details →

Erhalten Sie die neuesten Spotpreiss for 7 major commodities: gold, silver, platinum, palladium, crude oil, natural gas, und copper. Preise are in USD by default but can be converted to any of the 30 supported currencies. Nützlich für commodity trading dashboards, investment portfolio trackers, und economic analysis tools that need to monitor raw material prices alongside currencies.

Parameter
currency optional Standard: USD
Price currency
curl https://nordapi.ee/api/v1/commodities

Rohstoffpreis

GET /commodities/:commodity
Details →

Erhalten Sie den aktuellen price for a specific commodity (gold, silver, platinum, palladium, oil, natural_gas, oder copper) in any of the 30 supported currencies. Liefert both the USD base price und the converted price. Useful when you need just one commodity's price rather than the full list, wie z. B. displaying the gold price in NOK on a Nordic investment page.

Parameter
commodity erforderlich
Commodity name in URL
currency optional Standard: USD
Price currency
curl "https://nordapi.ee/api/v1/commodities/gold?currency=NOK"

Rohstoffhistorie

GET /commodities/:commodity/history
Details →

Abrufen historischer daily prices for any commodity over a custom date range. Liefert ein array of date-price pairs in USD. Nützlich für charting commodity price trends, performing technical analysis on gold oder oil, backtesting commodity trading strategies, und building historical comparison tools that show how commodity prices moved during specific economic events.

Parameter
commodity erforderlich
Commodity name
start_date erforderlich
Start date
end_date erforderlich
End date
curl "https://nordapi.ee/api/v1/commodities/gold/history?start_date=2026-03-01&end_date=2026-03-24"

Alle Mehrwertsteuersätze

GET /vat
Details →

Erhalten Sie current Value Added Tax (VAT) rates for all 32 EU und EEA countries, einschließlich standard rates, reduced rates, und super-reduced rates where applicable. Unverzichtbar für e-commerce platforms selling to European customers, tax compliance tools, invoice generators, und any business that needs to apply the correct VAT rate based on the buyer's country.

curl https://nordapi.ee/api/v1/vat

Landes-Mehrwertsteuersatz

GET /vat/:country_code
Details →

Erhalten Sie die Mehrwertsteuersatz-Details for a specific EU/EEA country by its ISO country code. Liefert die standard rate, reduced rate, und the country's local currency. Ideal für checkout flows where you know the customer's country und need to calculate the correct tax, oder for displaying country-specific pricing information on product pages.

Parameter
country_code erforderlich
ISO country code
curl https://nordapi.ee/api/v1/vat/NO

Mehrwertsteuerrechner

GET /vat/calculate
Details →

Berechnen Sie den VAT amount und total price (net + VAT) for a given amount und country. Automatically applies the correct VAT rate for the specified EU/EEA country. Optional converts the total into another currency using live Wechselkurse. Ideal für building pricing calculators, checkout summaries, und invoice generators that need to show net amount, VAT, und total in the customer's preferred currency.

Parameter
amount erforderlich
Net amount
country erforderlich
Country code
currency optional
Convert total to currency
curl "https://nordapi.ee/api/v1/vat/calculate?amount=100&country=DE&currency=USD"

Verfügbare Indikatoren

GET /economics/indicators
Details →

Auflisten aller 15 available economic indicators with their keys und World Bank API codes. Indicators include GDP, GDP pro Kopf, inflation (CPI), unemployment rate, Kaufkraftparität (PPP), trade balance, government debt, population, life expectancy, und mehr. Verwenden Sie dies Endpunkt to discover which indicators are available before querying country-specific data. Daten von the World Bank Open Data platform.

curl https://nordapi.ee/api/v1/economics/indicators

Landeswirtschaft

GET /economics/:country
Details →

Erhalten Sie all 15 economic indicators for a specific country in a single request, each with multiple years of historical data. Liefert GDP, inflation, unemployment, PPP, trade balance, government debt, population, und mehr. Ideal für building country economic profile pages, research dashboards, und investment analysis tools. Daten von the World Bank, typically covering the most recent 5-10 years of available data.

Parameter
country erforderlich
ISO country code
curl https://nordapi.ee/api/v1/economics/NO

Spezifischer Indikator

GET /economics/:country/:indicator
Details →

Erhalten Sie eine single economic indicator for a specific country with multiple years of historical data. Geben Sie an: the country code und indicator key (e.g., gdp, inflation, gdp_per_capita, unemployment, ppp) in the URL. Liefert year-by-year values for trend analysis. Fokussierter than the full country Endpunkt when you only need one metric, nützlich für time-series charts und targeted economic comparisons.

Parameter
country erforderlich
Country code
indicator erforderlich
Indicator key (e.g. gdp, inflation, gdp_per_capita)
curl https://nordapi.ee/api/v1/economics/US/gdp_per_capita

Länder vergleichen

GET /economics/compare/:indicator
Details →

Vergleichen Sie ein specific economic indicator across multiple countries nebeneinander. Geben Sie an: the indicator key in the URL und a comma-separated list of country codes as a parameter. Liefert die latest value for each country, making it easy to build comparison bar charts, ranking tables, und cross-country economic analysis tools. For example, compare GDP pro Kopf across Norway, USA, Germany, und Estonia.

Parameter
indicator erforderlich
Indicator key
countries erforderlich
Comma-separated country codes
curl "https://nordapi.ee/api/v1/economics/compare/gdp_per_capita?countries=NO,US,DE,EE"

Globale Ranglisten

GET /economics/rankings/:indicator
Details →

Ordnen Sie Länder weltweit by any economic indicator, from GDP pro Kopf to inflation rate to unemployment. Liefert ranked results with country codes und values, configurable up to 50 results. Ideal für building global leaderboard visualizations, identifying top-performing economies, und creating educational content about where countries stand on key economic metrics.

Parameter
indicator erforderlich
Indicator key
limit optional Standard: 50
Number of results
curl "https://nordapi.ee/api/v1/economics/rankings/gdp_per_capita?limit=10"

Aktienhandel des Senats

GET /congress/senate
Details →

Zugriff auf aktuelle US Senate stock trading disclosures as required by the STOCK Act. Liefert senator names, stock tickers, transaction types (purchase/sale), und reported dollar ranges. Filtern Sie by specific stock ticker oder senator name. Nützlich für tracking congressional trading activity, building political finance transparency tools, und analyzing whether senators trade ahead of legislation. Daten von official Senate financial disclosures.

Parameter
ticker optional
Filter by stock ticker
name optional
Filter by senator name
curl https://nordapi.ee/api/v1/congress/senate

Aktienhandel des Repräsentantenhauses

GET /congress/house
Details →

Zugriff auf aktuelle US House of Representatives stock trading disclosures as required by the STOCK Act. Liefert representative names, stock tickers, transaction types, und reported dollar ranges. Filtern Sie by specific stock ticker oder representative name. Nützlich für tracking congressional insider trading activity, building political accountability dashboards, und comparing House trading patterns to market movements.

Parameter
ticker optional
Filter by stock ticker
name optional
Filter by representative name
curl https://nordapi.ee/api/v1/congress/house

Edelmetallpreise

GET /metals/prices
Details →

Erhalten Sie current Spotpreiss for gold, silver, platinum, und palladium in any of the 30 supported currencies. Liefert per-troy-ounce prices for each metal. Ideal für investment tracking apps, jewelry pricing calculators, und financial dashboards that need precious metals alongside currency data. Preise are updated daily und can be displayed in local currencies like NOK oder SEK for Nordic users.

Parameter
base optional Standard: USD
Price currency
curl https://nordapi.ee/api/v1/metals/prices

Historischer Metallpreis

GET /metals/historical/:metal/:date
Details →

Nachschlagen von the price of a specific precious metal (gold, silver, platinum, oder palladium) on any past date. Geben Sie an: the metal name und date in the URL path. Liefert die USD price for that date. Nützlich für historical portfolio valuation, insurance appraisals, academic research on metal price trends, und comparing metal performance against other assets over time.

Parameter
metal erforderlich
Metal name (gold, silver, platinum, palladium)
date erforderlich
Date (YYYY-MM-DD)
curl https://nordapi.ee/api/v1/metals/historical/gold/2026-03-20