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.
Basis-URL: https://nordapi.ee/api/v1
GET /currencies
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
GET /latest
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.
base
optional
Standard: EUR
symbols
optional
curl "https://nordapi.ee/api/v1/latest?base=USD&symbols=EUR,GBP,NOK"
GET /convert
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.
from
erforderlich
to
erforderlich
amount
erforderlich
margin
optional
date
optional
curl "https://nordapi.ee/api/v1/convert?from=USD&to=EUR&amount=100"
GET /convert/batch
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.
from
erforderlich
amount
erforderlich
to
erforderlich
curl "https://nordapi.ee/api/v1/convert/batch?from=USD&amount=100&to=EUR,GBP,NOK"
GET /historical/:date
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.
date
erforderlich
base
optional
Standard: EUR
symbols
optional
curl "https://nordapi.ee/api/v1/historical/2026-03-15?base=USD"
GET /timeseries
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.
start_date
erforderlich
end_date
erforderlich
base
optional
symbols
optional
curl "https://nordapi.ee/api/v1/timeseries?start_date=2026-03-01&end_date=2026-03-15&base=USD&symbols=EUR"
GET /fluctuation
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.
start_date
erforderlich
end_date
erforderlich
base
optional
symbols
optional
curl "https://nordapi.ee/api/v1/fluctuation?start_date=2026-03-19&end_date=2026-03-20&base=EUR&symbols=USD,GBP"
GET /rankings
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.
base
optional
Standard: EUR
curl "https://nordapi.ee/api/v1/rankings?base=EUR"
GET /matrix
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.
currencies
erforderlich
curl "https://nordapi.ee/api/v1/matrix?currencies=USD,EUR,GBP,NOK"
GET /pair/:base/:target
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.
base
erforderlich
target
erforderlich
curl https://nordapi.ee/api/v1/pair/EUR/USD
GET /sma
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.
base
erforderlich
target
erforderlich
period
optional
Standard: 30
curl "https://nordapi.ee/api/v1/sma?base=EUR&target=USD&period=14"
GET /volatility
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.
base
erforderlich
target
erforderlich
period
optional
Standard: 30
curl "https://nordapi.ee/api/v1/volatility?base=EUR&target=USD"
GET /range
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.
base
erforderlich
target
erforderlich
start_date
erforderlich
end_date
erforderlich
curl "https://nordapi.ee/api/v1/range?base=EUR&target=USD&start_date=2026-03-19&end_date=2026-03-24"
GET /compare
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.
base
erforderlich
target
erforderlich
curl "https://nordapi.ee/api/v1/compare?base=EUR&target=USD"
GET /arbitrage
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.
currencies
optional
Standard: USD,EUR,GBP,JPY,CHF,CAD,AUD
curl "https://nordapi.ee/api/v1/arbitrage?currencies=USD,EUR,GBP,JPY,NOK"
GET /countries
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.
region
optional
curl https://nordapi.ee/api/v1/countries
GET /countries/:code
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.
code
erforderlich
curl https://nordapi.ee/api/v1/countries/NO
GET /currencies/:code/countries
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.
code
erforderlich
curl https://nordapi.ee/api/v1/currencies/EUR/countries
GET /history/date/:date
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.
date
erforderlich
base
optional
symbols
optional
curl "https://nordapi.ee/api/v1/history/date/2008-09-15?base=USD&symbols=EUR,GBP"
GET /history/range
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.
start
erforderlich
end
erforderlich
base
optional
symbols
optional
curl "https://nordapi.ee/api/v1/history/range?start=2020-01-01&end=2020-06-30&base=USD&symbols=EUR"
GET /history/significant
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
GET /crypto/prices
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.
limit
optional
Standard: 100
curl https://nordapi.ee/api/v1/crypto/prices?limit=5
GET /crypto/:coin_id
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.
coin_id
erforderlich
curl https://nordapi.ee/api/v1/crypto/bitcoin
GET /crypto/convert
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.
coin
erforderlich
to
erforderlich
amount
optional
Standard: 1
curl "https://nordapi.ee/api/v1/crypto/convert?coin=bitcoin&to=NOK&amount=1"
GET /crypto/search
Durchsuchen Sie the top 250 Kryptowährungen by name oder ticker symbol. Liefert übereinstimmende coins with their ID, symbol, name, und current price. Nützlich für building autocomplete search fields in crypto apps, letting users find und add coins to watchlists, oder resolving ambiguous ticker symbols to the correct coin.
q
erforderlich
curl "https://nordapi.ee/api/v1/crypto/search?q=ethereum"
GET /crypto/history/:coin_id
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.
limit
optional
Standard: 144
start_date
optional
end_date
optional
curl "https://nordapi.ee/api/v1/crypto/history/bitcoin?limit=10"
GET /crypto/ohlc/:coin_id
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.
date
optional
Standard: today
curl "https://nordapi.ee/api/v1/crypto/ohlc/bitcoin?date=2026-03-28"
GET /crypto/summary/:coin_id
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
GET /commodities
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.
currency
optional
Standard: USD
curl https://nordapi.ee/api/v1/commodities
GET /commodities/:commodity
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.
commodity
erforderlich
currency
optional
Standard: USD
curl "https://nordapi.ee/api/v1/commodities/gold?currency=NOK"
GET /commodities/:commodity/history
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.
commodity
erforderlich
start_date
erforderlich
end_date
erforderlich
curl "https://nordapi.ee/api/v1/commodities/gold/history?start_date=2026-03-01&end_date=2026-03-24"
GET /vat
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
GET /vat/:country_code
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.
country_code
erforderlich
curl https://nordapi.ee/api/v1/vat/NO
GET /vat/calculate
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.
amount
erforderlich
country
erforderlich
currency
optional
curl "https://nordapi.ee/api/v1/vat/calculate?amount=100&country=DE¤cy=USD"
GET /economics/indicators
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
GET /economics/:country
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.
country
erforderlich
curl https://nordapi.ee/api/v1/economics/NO
GET /economics/:country/:indicator
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.
country
erforderlich
indicator
erforderlich
curl https://nordapi.ee/api/v1/economics/US/gdp_per_capita
GET /economics/compare/:indicator
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.
indicator
erforderlich
countries
erforderlich
curl "https://nordapi.ee/api/v1/economics/compare/gdp_per_capita?countries=NO,US,DE,EE"
GET /economics/rankings/:indicator
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.
indicator
erforderlich
limit
optional
Standard: 50
curl "https://nordapi.ee/api/v1/economics/rankings/gdp_per_capita?limit=10"
GET /congress/senate
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.
ticker
optional
name
optional
curl https://nordapi.ee/api/v1/congress/senate
GET /congress/house
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.
ticker
optional
name
optional
curl https://nordapi.ee/api/v1/congress/house
GET /metals/prices
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.
base
optional
Standard: USD
curl https://nordapi.ee/api/v1/metals/prices
GET /metals/historical/:metal/:date
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.
metal
erforderlich
date
erforderlich
curl https://nordapi.ee/api/v1/metals/historical/gold/2026-03-20