All sessions with status, overlaps and liquidity flag
API · /fxsessions-api
Forex Market Sessions API
Live forex market-hours layer — a real-time read on which foreign-exchange trading sessions are open right now and where the liquidity is. The 24-hour forex market runs as a relay of four regional sessions — Sydney, Tokyo, London and New York — and this computes, from the current clock and each financial centre's own timezone (daylight-saving handled automatically), whether each session is open, its local time, and its standard open and close in both local time and UTC. It surfaces the active session overlaps that traders care about — above all the London–New York overlap, the most liquid window of the day — reports whether the overall market is open (it closes over the weekend), and gives a world-clock of the four centres. Deterministic and always live, no key. Distinct from FX rate, strength, volatility, seasonality and signal APIs — this is the market-hours layer for forex, trading and dashboard apps.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 94 ms
- Server probes · 24h
- Subscribers
- 3,057
- active
- Total calls
- 32
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 12,000 calls / month
- 4 requests / second
- Hard cap (429 above quota, no overage)
- 12k calls/month
- 4 req/sec
- All endpoints
- No credit card
Starter
€7.00 /month
- 175,000 calls / month
- 12 requests / second
- Hard cap (429 above quota, no overage)
- 175k calls/month
- 12 req/sec
- Email support
Pro
€20.00 /month
- 900,000 calls / month
- 35 requests / second
- Hard cap (429 above quota, no overage)
- 900k calls/month
- 35 req/sec
- Priority support
Desk
€49.00 /month
- 4,500,000 calls / month
- 100 requests / second
- Hard cap (429 above quota, no overage)
- 4.5M calls/month
- 100 req/sec
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
US Treasury Cash (TGA) API
The US federal government's checking account — the Treasury General Account (TGA) at the Federal Reserve — served from the official Daily Treasury Statement. The TGA is where the government's cash sits, and its day-to-day balance is a closely watched market-liquidity gauge: a falling TGA injects cash into the financial system, a rising one drains it. The balance endpoint returns the latest day's opening balance, total deposits, total withdrawals, closing balance and the net change, in millions and billions of dollars. The history endpoint returns the daily closing TGA balance over a window. The flows endpoint returns the latest day's largest cash deposits and withdrawals by category — withheld and corporate taxes coming in, Social Security and debt redemptions going out — so you can see exactly where the money moved. This is the Treasury-cash and fiscal-liquidity data-cut, distinct from the national-debt, fiscal-deficit and yield-curve APIs in the catalogue. Live, updated each business day, no key on the upstream, nothing stored.
api.oanor.com/treasurycash-api
TIPS Real Yields & Breakeven Inflation API
The inflation-adjusted side of the US Treasury yield curve, served from the Treasury's official daily feeds. The realyields endpoint returns the latest TIPS real yield curve — the inflation-protected (real) yield at the 5, 7, 10, 20 and 30-year maturities. The breakeven endpoint returns market-implied inflation: at each maturity it takes the nominal Treasury yield minus the real yield, which is the average annual inflation rate the bond market is pricing in over that horizon, and returns it alongside the nominal and real components. The history endpoint returns the daily time series of the real yield, the nominal yield and the breakeven inflation rate for one maturity over a year. A 10-year breakeven of 2.3 means the market is pricing roughly 2.3% average inflation over the next decade — a core gauge for rates traders, macro funds and inflation hedgers. This is the real-yield and inflation-expectations data-cut — distinct from the nominal yield-curve, the world-government-bond and the central-bank-rate APIs in the catalogue. Live, no key on the upstream, nothing stored.
api.oanor.com/realyields-api
Big Mac Index API
The Economist's Big Mac Index — "burgernomics" — as an API: how over- or under-valued the world's currencies are, measured by the price of a Big Mac. The same burger costing different amounts across countries reveals purchasing-power-parity (PPP) misalignment in exchange rates. The index endpoint returns the latest release for every country — the local Big Mac price, its US-dollar price at the market exchange rate, and the raw and GDP-adjusted over/under-valuation of that currency against a chosen base (USD, EUR, GBP, JPY or CNY). The country endpoint returns one country's full history — the valuation trend over every release since 2000. The extremes endpoint returns the most over-valued and most under-valued currencies in the latest release. A positive valuation means the currency is over-valued versus the base; negative means under-valued; the GDP-adjusted figure corrects for cheaper labour in poorer countries. This is a PPP / currency-valuation data-cut — a fundamental gauge, not a live FX tick — distinct from the spot-rate, central-bank and conversion APIs in the catalogue. Live from the open dataset, no key on the upstream, nothing stored.
api.oanor.com/bigmac-api
National Bank of Kazakhstan (NBK) FX API
Live official exchange rates from the National Bank of the Republic of Kazakhstan (NBK), the central bank that sets the tenge (KZT) reference rate — read straight from the bank's public rates feed, no key, nothing stored. The rates endpoint returns the full official board for any date: every foreign currency the bank quotes against the tenge with its rate, the nominal it is quoted per, the daily direction (up / down / flat) and the change. The currency endpoint returns a single currency's official rate, for today or any past date. The convert endpoint converts an amount between the tenge and any quoted currency at the official rate — both directions. Look up the tenge value of the US dollar, euro, Russian ruble, Chinese yuan and 35 more currencies, or pull a historical board by date. This is the Kazakhstani central-bank FX cut (KZT reference rates) — distinct from the crypto exchange-ticker and the other central-bank APIs in the catalogue.
api.oanor.com/nbkz-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Forex Market Sessions API?
What's the rate limit for Forex Market Sessions API?
How much does Forex Market Sessions API cost?
Can I cancel my subscription anytime?
Is Forex Market Sessions 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/fxsessions-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/fxsessions-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/fxsessions-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/fxsessions-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.