Central Bank of Venezuela Exchange Rate API
Official Central Bank of Venezuela rates for 10 Sept 2026: 1 USD = 825.67 VES, 1 EUR = 960.80 VES. All 21 currencies published, history back to 2017. Free JSON API for tax, audits, and compliant invoicing.
About Central Bank of Venezuela
The Central Bank of Venezuela publishes the official reference exchange rate — around 21 currencies with buying and selling sides in bolivars, dated by the Fecha Valor on which each rate legally applies. Venezuelan accounting and tax practice are required to use the BCV rate, which has often stood far from parallel-market quotes; the official print is precisely what filings must cite.
- Official website: www.bcv.org.ve
- Official rate publication: Tipo de cambio de referencia
Quick start
One request for the pair you need — USD to VES at the official Central Bank of Venezuela rate:
curl "https://allratestoday.com/api/v1/central-bank/bcv/latest?source=USD&target=VES" \
-H "Authorization: Bearer art_live_your_key" Or the bank's full published table:
curl "https://allratestoday.com/api/v1/central-bank/bcv/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/bcv/history?source=USD&target=VES&from=2025-01-01" \
-H "Authorization: Bearer art_live_your_key" Latest published rates (2026-09-10)
Below is the current table from Central Bank of Venezuela, unmodified — what a call to /latest returns right now, with values VES 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 |
|---|---|---|---|
ANG | VES | buy | 473.40620219 |
ANG | VES | sell | 474.5926839 |
ARS | VES | buy | 0.54535518 |
ARS | VES | sell | 0.54672199 |
BOB | VES | buy | 65.63336703 |
BOB | VES | sell | 65.79786168 |
BRL | VES | buy | 161.68956374 |
BRL | VES | sell | 162.09480074 |
CAD | VES | buy | 598.09760103 |
CAD | VES | sell | 599.59659251 |
CLP | VES | buy | 0.89154393 |
CLP | VES | sell | 0.89377838 |
CNY | VES | buy | 123.09252907 |
CNY | VES | sell | 123.40103165 |
COP | VES | buy | 0.26576147 |
COP | VES | sell | 0.26642754 |
CUC | VES | buy | 825.66775725 |
CUC | VES | sell | 827.7371 |
DOP | VES | buy | 14.0826839 |
DOP | VES | sell | 14.11797885 |
EUR | VES | buy | 960.80479907 |
EUR | VES | sell | 963.21283115 |
INR | VES | buy | 8.68164404 |
INR | VES | sell | 8.70340255 |
JPY | VES | buy | 5.37736661 |
JPY | VES | sell | 5.39084372 |
MXN | VES | buy | 48.87401042 |
MXN | VES | sell | 48.99650167 |
NIO | VES | buy | 23.14402602 |
NIO | VES | sell | 23.2020311 |
PEN | VES | buy | 246.49006097 |
PEN | VES | sell | 247.10783055 |
RUB | VES | buy | 9.70371495 |
RUB | VES | sell | 9.72803504 |
TRY | VES | buy | 17.03384119 |
TRY | VES | sell | 17.07653252 |
TTD | VES | buy | 123.16230213 |
TTD | VES | sell | 123.47097957 |
USD | VES | buy | 825.66775725 |
USD | VES | sell | 827.7371 |
UYU | VES | buy | 20.53082746 |
UYU | VES | sell | 20.58228317 |
Node.js / TypeScript client
A dedicated zero-dependency npm package wraps these endpoints — central-bank-of-venezuela-exchange-rate:
npm install central-bank-of-venezuela-exchange-rate import { getRate } from 'central-bank-of-venezuela-exchange-rate';
const pair = await getRate('USD', 'VES', { 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: central-bank-of-venezuela-exchange-rate documentation.
Why use the official Central Bank of Venezuela rate?
When an auditor or tax office in Venezuela asks which rate you used, "the VES mid-market rate at 14:32" is not an answer — the official rate published by Central Bank of Venezuela for that date is. This API returns exactly those published figures, stamped with the bank's own rate_date; on weekends and holidays the most recent published table is returned, as compliance rules expect.
If a pair isn't in the bank's published table, the API computes it from that table (inverse or cross via VES) and marks it "derived": true — published and computed values are never silently mixed.
Endpoints
GET /api/v1/central-bank/bcv/latest— latest table or single pair (all plans)GET /api/v1/central-bank/bcv/{YYYY-MM-DD}— the table for any date (paid plans)GET /api/v1/central-bank/bcv/history— time series, up to 5,000 rows (paid plans)GET /api/v1/central-bank/bcv/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
Is there an API for Central Bank of Venezuela exchange rates?
Yes — this one. Official daily VES rates as clean JSON, latest table on every plan including free.
How often does Central Bank of Venezuela update its rates?
New tables land once per business day — the API picks each one up shortly after Central Bank of Venezuela publishes it (latest: 2026-09-10).
Is this the official published table?
Yes — the rows are Central Bank of Venezuela's published figures, untouched, with the original publication date attached. Pairs the bank didn't print are computed and flagged derived.
Central Bank of Venezuela rates, one API key
Latest table on every plan. History back to 2017 on paid plans. No credit card to start.
Get Free API Key Read the Docs