Economies ranked by year-on-year real exports growth, with imports
API · /trade-api
Trade Growth API
How fast each economy's exports and imports are growing, on one comparable screen — real trade growth from the OECD's official Quarterly National Accounts as an API, live, no key. Trade is the external engine of an economy: exports are foreign demand for what a country makes, imports are domestic demand for what the world makes, and the gap between how fast the two are growing is the net-trade contribution to GDP — a swing factor that moves the currency and the current account. Export-led economies live and die by the export number; the OECD harmonises and seasonally adjusts the real, chain-linked-volume trade flows so the figures are genuinely comparable across countries. This API serves the two growth rates people quote — quarter-on-quarter (the latest quarter's pace) and year-on-year (versus the same quarter a year earlier) — for real exports and real imports of goods and services. The board endpoint ranks every economy by its export growth, with imports alongside, so you can see whose external demand is booming and whose is fading. The imports endpoint ranks by import growth — a read on domestic demand pulling in goods. The country endpoint gives one economy's export and import growth with a plain-language read of whether net trade is improving (exports outpacing imports) or dragging. Each reading carries its own quarter and discontinued series are excluded, so the board is genuinely current. The external-sector / trade-growth cut — distinct from the headline GDP-growth board (this isolates the trade component), the annual IMF World Economic Outlook database, and the generic multi-provider data aggregator. Figures are quarterly, in percent.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 893 ms
- Server probes · 24h
- Subscribers
- 4,390
- active
- Total calls
- 36
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 810 calls / month
- 2 requests / second
- Hard cap (429 above quota, no overage)
- 810 calls/month
- 2 req/sec
- All endpoints
- No credit card
Starter
€11.50 /month
- 17,500 calls / month
- 6 requests / second
- Hard cap (429 above quota, no overage)
- 17,500 calls/month
- 6 req/sec
- Exports & imports boards
- Email support
Pro
€35.00 /month
- 89,000 calls / month
- 16 requests / second
- Hard cap (429 above quota, no overage)
- 89,000 calls/month
- 16 req/sec
- All economies & aggregates
- Priority support
Business
€79.60 /month
- 498,000 calls / month
- 40 requests / second
- Hard cap (429 above quota, no overage)
- 498,000 calls/month
- 40 req/sec
- Desk-grade throughput
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Moldova Foreign Trade API
Official foreign-trade statistics for the Republic of Moldova — exports, imports and the trade balance — sourced live from the National Bureau of Statistics of Moldova via its public PxWeb statbank (table EXT015000), all values in millions of US dollars. The trade endpoint returns the latest reported month with exports, imports, the trade balance and the export-to-import cover ratio. The series endpoint returns the monthly history of exports, imports and balance, parameterised by the number of months. The partners endpoint breaks the latest month down by partner-country group — total, CIS countries, the European Union and the rest of the world — each with its exports, imports and balance, showing where Moldova trades. The annual endpoint returns full-year totals for exports, imports and balance across recent years. Figures are published directly by the statistics bureau, not modelled, and refreshed from source with a short server-side cache and keep-warm. Ideal for macro and trade dashboards, emerging-market and CIS/EU economics trackers, supply-chain and current-account analysis, and fintech needing a clean structured trade feed for a market the big aggregators rarely cover at monthly resolution. Live keyless upstream. 5 endpoints.
api.oanor.com/moldova-trade-api
Package Type Codes API
The UN/ECE Recommendation 21 package-type codes — the codes used to describe the kind of packaging in trade, transport and customs documents (packing lists, dangerous-goods declarations, EDI messages) — as an API. The reference a logistics, customs or e-invoicing system needs. Each of 400+ codes (for example 1A = steel drum, 5H = woven-plastic bag, BX = box, CT = carton, JY = jerrican) carries an alphanumeric code, a name, a description and a numeric code. Look a code up, reverse-look-up the codes that share a numeric code, search by name, or list them all. This is the packaging-type CODE register — distinct from containercodes-api (ISO 6346 shipping containers) and unitcodes-api (units of measure). Served from memory — always fast.
api.oanor.com/packagecodes-api
Units of Measure Codes API
The UN/ECE Recommendation 20 unit-of-measure codes — the codes used to identify units of measure in trade documents, invoices and EDI messages — as an API. The reference a customs, ERP or e-invoicing system needs. Each unit (for example KGM = kilogram, MTR = metre, LTR = litre, C62 = one/each, TNE = tonne, MTK = square metre) carries a 2–3 character common code, a name, the unit symbol, a description and a status (active or deprecated). Look a code up, reverse-look-up the code(s) for a symbol (kg → KGM), search by name or symbol, or list every code filtered by status. This is the unit-of-measure CODE register — distinct from unit-api, which performs unit-conversion maths. Served from memory — always fast.
api.oanor.com/unitcodes-api
Incoterms API
The ICC Incoterms — the international commercial terms used in every contract of international sale — as an API. For each of the 11 three-letter terms (EXW, FCA, FAS, FOB, CFR, CIF, CPT, CIP, DAP, DPU, DDP): its full name, a plain-language description of what the seller and the buyer are each responsible for, the official Incoterms group (E departure, F main-carriage-unpaid, C main-carriage-paid, D arrival) and the mode of transport it applies to (any mode, or sea and inland waterway only). Look a term up, list the terms in a group, filter by transport mode, or list them all. The reference an e-commerce checkout, ERP, freight-forwarding or trade-finance system needs to interpret a delivery term. Served from memory — always fast.
api.oanor.com/incoterms-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Trade Growth API?
What's the rate limit for Trade Growth API?
How much does Trade Growth API cost?
Can I cancel my subscription anytime?
Is Trade Growth API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/trade-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/trade-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/trade-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/trade-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.