State Bank of Vietnam Exchange Rate API

Official State Bank of Vietnam rates for 5 Sept 2026: 1 USD = 24375.00 VND, 1 EUR = 28286.00 VND. All 28 currencies published, history back to 2009. Free JSON API for tax, audits, and compliant invoicing.

Vietnam flagState Bank of Vietnam publishes official daily exchange rates — 28 currencies against the VND — and this API serves them as JSON, with history back to 2009. The latest table is on every plan. Get your API key.

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.

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-05)

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

Download history:
Choose currencies: USD
Excel (.xlsx) CSV

One row per currency per publication date. Up to one year per download. Billed as one API call per currency per month of data.

BaseQuoteTypeRate
AED VND reference 6973.45
AUD VND buy 17525
AUD VND reference 18293.22
AUD VND sell 19369
BRL VND reference 4969.92
CAD VND buy 17639
CAD VND reference 18405.92
CAD VND sell 19495
CHF VND buy 30114
CHF VND reference 31512.24
CHF VND sell 33284
CNY VND reference 3809.54
DKK VND reference 3966.73
EUR VND buy 28286
EUR VND reference 29648.7
EUR VND sell 31264
GBP VND buy 32914
GBP VND reference 34573.5
GBP VND sell 36378
HKD VND reference 3266.21
IDR VND reference 1.44
INR VND reference 269.67
JPY VND buy 156
JPY VND reference 160.47
JPY VND sell 173
KHR VND reference 6.33
KRW VND reference 18.72
LAK VND reference 1.15
MOP VND reference 3171.12
MYR VND reference 6339.11
NOK VND reference 2746.76
NZD VND reference 14969.05
PLN VND reference 6837.72
RUB VND reference 294.71
SEK VND reference 2659.34
SGD VND reference 20116.25
THB VND reference 769.53
TRY VND reference 530.31
TWD VND reference 806.74
USD VND buy 24375
USD VND reference 25605
USD VND sell 26835

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

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-05).

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