State Bank of Vietnam Exchange Rate API
Official State Bank of Vietnam rates for 10 Sept 2026: 1 USD = 24362.00 VND, 1 EUR = 28282.00 VND. All 28 currencies published, history back to 2009. Free JSON API for tax, audits, and compliant invoicing.
About State Bank of Vietnam
The State Bank of Vietnam announces a daily USD/VND central rate — each announcement carrying its own decree number — around which banks may trade within a band, plus reference buying and selling rates for seven currencies and a weekly 27-currency cross-rate table used for customs and tax valuation. The central-rate series reaches back to 2009.
- Official website: www.sbv.gov.vn
- Official rate publication: Central exchange rate
Quick start
One request for the pair you need — USD to VND at the official State Bank of Vietnam rate:
curl "https://allratestoday.com/api/v1/central-bank/sbv/latest?source=USD&target=VND" \
-H "Authorization: Bearer art_live_your_key" Or the bank's full published table:
curl "https://allratestoday.com/api/v1/central-bank/sbv/latest" \
-H "Authorization: Bearer art_live_your_key" On paid plans, any historical date or a time series:
curl "https://allratestoday.com/api/v1/central-bank/sbv/history?source=USD&target=VND&from=2025-01-01" \
-H "Authorization: Bearer art_live_your_key" Latest published rates (2026-09-10)
The most recent table as published by State Bank of Vietnam — exactly what the /latest endpoint returns right now. Values are VND per 1 unit of each currency:
Download this table: Excel (.xlsx) CSV (paid plan required)
One row per currency per publication date. Up to one year per download. Billed as one API call per currency per month of data.
Prefer a bulk file? The complete archive of every source is also published as an open dataset: central-bank-exchange-rates on Hugging Face
| Base | Quote | Type | Rate |
|---|---|---|---|
AED | VND | reference | 6969.09 |
AUD | VND | buy | 17539 |
AUD | VND | reference | 18486.55 |
AUD | VND | sell | 19386 |
BRL | VND | reference | 5028.78 |
CAD | VND | buy | 17607 |
CAD | VND | reference | 18582.73 |
CAD | VND | sell | 19460 |
CHF | VND | buy | 30020 |
CHF | VND | reference | 31648.32 |
CHF | VND | sell | 33180 |
CNY | VND | reference | 3815.9 |
DKK | VND | reference | 3982.88 |
EUR | VND | buy | 28282 |
EUR | VND | reference | 29765.82 |
EUR | VND | sell | 31259 |
GBP | VND | buy | 32936 |
GBP | VND | reference | 34667.07 |
GBP | VND | sell | 36403 |
HKD | VND | reference | 3263.71 |
IDR | VND | reference | 1.46 |
INR | VND | reference | 269.55 |
JPY | VND | buy | 158 |
JPY | VND | reference | 166.84 |
JPY | VND | sell | 175 |
KHR | VND | reference | 6.32 |
KRW | VND | reference | 19.13 |
LAK | VND | reference | 1.15 |
MOP | VND | reference | 3168.75 |
MYR | VND | reference | 6291.54 |
NOK | VND | reference | 2776.83 |
NZD | VND | reference | 14985.29 |
PLN | VND | reference | 6903.3 |
RUB | VND | reference | 298.65 |
SEK | VND | reference | 2670.58 |
SGD | VND | reference | 20240.41 |
THB | VND | reference | 778.64 |
TRY | VND | reference | 528.09 |
TWD | VND | reference | 813.41 |
USD | VND | buy | 24362 |
USD | VND | reference | 25591 |
USD | VND | sell | 26820 |
Node.js / TypeScript client
A dedicated zero-dependency npm package wraps these endpoints — sbv-exchange-rate:
npm install sbv-exchange-rate import { getRate } from 'sbv-exchange-rate';
const pair = await getRate('USD', 'VND', { apiKey: 'art_live_...' });
console.log(pair.rate, pair.rate_date); Zero dependencies, TypeScript types included, and it runs anywhere fetch exists — Node 18+, Bun, Deno, and edge runtimes.
Full reference — installation, all four functions, response shapes, error codes: sbv-exchange-rate documentation.
Why use the official State Bank of Vietnam rate?
Live market rates move continuously, but tax filings, customs declarations, audits, and statutory accounting in Vietnam and beyond typically require the official rate published by State Bank of Vietnam for a given date — a fixed, citable number that never changes after publication. This API serves those published tables with the bank's own rate_date on every response; weekends and holidays return the most recent published date, which is the rate compliance rules require you to apply.
If a pair isn't in the bank's published table, the API computes it from that table (inverse or cross via VND) and marks it "derived": true — published and computed values are never silently mixed.
Endpoints
GET /api/v1/central-bank/sbv/latest— latest table or single pair (all plans)GET /api/v1/central-bank/sbv/{YYYY-MM-DD}— the table for any date (paid plans)GET /api/v1/central-bank/sbv/history— time series, up to 5,000 rows (paid plans)GET /api/v1/central-bank/sbv/availability— publication calendar: the dates the bank actually published (all plans)
Full parameter reference in the API documentation. Every request counts toward your plan's monthly quota — rates change once per business day, so caching a published table locally makes a small quota go far.
Frequently asked questions
Can I get State Bank of Vietnam exchange rates via an API?
Yes — this API serves the bank's official daily VND rates as JSON, and the latest table is on every plan, free included.
When do new rates appear here?
Once per business day, per State Bank of Vietnam's own schedule; ingestion follows within the hour (latest table: 2026-09-10).
Are these the official rates?
Yes — ingested from State Bank of Vietnam's own published data, served unmodified with the bank's publication date. Anything computed rather than published is flagged derived.
State Bank of Vietnam rates, one API key
Latest table on every plan. History back to 2009 on paid plans. No credit card to start.
Get Free API Key Read the Docs