One country's long-term yield + history
API · /worldbonds-api
World Government Bond Yields API
Live long-term (about 10-year) government bond interest rates for around 44 countries, side by side, served from the OECD's official statistics in a single live call. The long-term government bond yield is the benchmark cost of money for an economy, and this puts the whole developed world on one screen — the United States, Germany, the United Kingdom, Japan, Canada, Australia, Brazil, Switzerland, Mexico, Colombia and dozens more — each with its latest published rate and the month it covers. The yields endpoint returns every country ranked by yield together with its spread over the German Bund, the euro-area safe-asset benchmark: in mid-2026 Colombia near 13.2%, Mexico 9.5% and Brazil 9.1% sit at the top while Switzerland near 0.5% sits at the bottom, with the US around 4.5% and the German Bund around 3.0%. The country endpoint returns one country's long-term yield with two years of recent monthly history. The spreads endpoint ranks every country by its yield spread over a chosen benchmark — Germany or the United States — the risk-and-rate-differential picture fixed-income and macro desks watch. This is the international-rates comparison layer for any fixed-income, forex, macro or research app. Live from the OECD, nothing stored. Distinct from single-country central-bank and yield-curve APIs — this is the cross-country sovereign-yield comparison across the developed world. Monthly OECD series; 4 endpoints. No key, no cache.
API health
unhealthy- Uptime
- 25.00%
- Server probes · 24h
- Avg latency
- 404 ms
- Server probes · 24h
- Subscribers
- 3,265
- active
- Total calls
- 80
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 800 calls / month
- 2 requests / second
- Hard cap (429 above quota, no overage)
- 800 calls/month
- 2 req/sec
- All 44 countries + spreads
- No credit card
Starter
€11.00 /month
- 15,000 calls / month
- 6 requests / second
- Hard cap (429 above quota, no overage)
- 15,000 calls/month
- 6 req/sec
- Country history + benchmark spreads
- Email support
Pro
€29.00 /month
- 90,000 calls / month
- 15 requests / second
- Hard cap (429 above quota, no overage)
- 90,000 calls/month
- 15 req/sec
- Fixed-income & macro pipelines
- Priority support
Mega
€69.00 /month
- 500,000 calls / month
- 40 requests / second
- Hard cap (429 above quota, no overage)
- 500,000 calls/month
- 40 req/sec
- Desk & platform scale
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
BYMA Argentina Stock Exchange API
Live data from BYMA (Bolsas y Mercados Argentinos), the Argentine exchange, with no key. Read the live value of every BYMA index — the S&P MERVAL, the S&P BYMA General and the BYMA CEDEAR index among them — with level, change and VWAP; look up a single index; pull the public-bond market with prices, maturities and days-to-maturity (Argentine sovereign and public bonds); and look up a single bond. The Argentina-equities-index / sovereign-bond layer for trading dashboards, screeners and research — distinct from other exchange readers, this is BYMA index and bond data. Live from the BYMA free API; short cache only.
api.oanor.com/byma-api
MOEX Moscow Exchange API
Live multi-market data from the Moscow Exchange (MOEX), with no key. Read the live quote for any share (last, open/high/low, change, volume and value); the bond market with clean prices, yields to maturity and maturity dates (government OFZ and corporate); the value of any MOEX index (IMOEX, RTSI and the rest); the end-of-day price history; and the securities directory for shares, bonds or indices. The Russia-equities / bonds-with-yield / multi-market layer for trading dashboards, screeners and research — distinct from other exchange readers, MOEX spans shares, bonds and indices in one feed. Live from the MOEX ISS API; short cache only.
api.oanor.com/moex-api
Bond / Fixed-Income Performance API
What is moving across the bond market, by duration and credit, computed live from Yahoo Finance via the major fixed-income ETFs (no key, nothing stored). Bonds are the other half of every portfolio, and their moves are the cleanest read on interest rates and credit: when long Treasuries (TLT) fall, the market is pricing higher long rates; when high-yield (HYG) lags investment-grade (LQD), credit risk is being repriced. For every fixed-income ETF — Treasuries from ultra-short to 20-year-plus, investment-grade and high-yield credit, TIPS, munis, emerging-market and aggregate bonds — this measures the change on the day, the week and the month, the 52-week high and low and where the price sits in that range, tagged by category and rate sensitivity. The board endpoint returns the whole complex ranked by daily change with the gainers and losers and a category breakdown. The bond endpoint returns one ETF's performance card. The bonds endpoint lists what is covered. The fixed-income performance / bond-board cut — distinct from the government-bond-yield, yield-curve, central-bank-rate and bond-pricing-math APIs. Remember: a bond ETF's price moves inverse to its yield.
api.oanor.com/bondperformance-api
Cross-Asset Correlation Matrix API
How the major asset classes move together — a live correlation matrix across stocks, bonds, gold, oil, crypto and the dollar (no key, nothing stored). Correlation is the single most important input to diversification and risk: two assets with a correlation near 1 are effectively the same bet, while a low or negative correlation is genuine diversification. Where a crypto-correlation API stays inside crypto and an FX-correlation API stays inside currencies, this spans the whole multi-asset book at once — US and international equities, Treasuries and credit, gold, silver, oil and broad commodities, Bitcoin and Ether, the dollar and real estate — so an allocator can see in one call whether bonds are still hedging stocks, whether gold is decoupled and whether crypto is trading as a risk asset. The matrix endpoint returns the full pairwise return-correlation matrix over a chosen window, with the most- and least-correlated pairs. The asset endpoint returns one asset's correlation to every other, ranked, so you see its best diversifiers at a glance. The assets endpoint lists what is covered. The cross-asset / multi-asset correlation surface — distinct from the crypto-only correlation API, the FX-only currency-correlation API and the bring-your-own-series CAPM, risk-metrics and portfolio-optimiser calculators.
api.oanor.com/crossassetcorrelation-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for World Government Bond Yields API?
What's the rate limit for World Government Bond Yields API?
How much does World Government Bond Yields API cost?
Can I cancel my subscription anytime?
Is World Government Bond Yields 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/worldbonds-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/worldbonds-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/worldbonds-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/worldbonds-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.