Central Bank of Venezuela Exchange Rate API: Official VES Rates as JSON

Reviewed by Madhushan, Fintech Developer — August 2026

The Central Bank of Venezuela publishes the official exchange rates that accounting, tax, and customs practice in Venezuela reference — published official rates, not moving market prices. This guide shows how to pull them as JSON: via a REST endpoint or the zero-dependency central-bank-of-venezuela-exchange-rate npm package.

USD → VES — official Central Bank of Venezuela official reference rate (Venta)
Weekly observations, Aug '25 – Aug '26 · Venezuelan bolívars per 1 US dollar
200400600800Aug '25Nov '25Feb '26May '26Aug '26777.42025-08-22: 140.7 VES2025-08-29: 147.1 VES2025-09-05: 152.8 VES2025-09-12: 158.9 VES2025-09-19: 165.4 VES2025-09-26: 173.7 VES2025-10-03: 183.1 VES2025-10-10: 193.3 VES2025-10-17: 203.7 VES2025-10-24: 214.4 VES2025-10-31: 223.6 VES2025-11-07: 228.5 VES2025-11-14: 234.9 VES2025-11-21: 241.6 VES2025-11-28: 245.7 VES2025-12-05: 254.9 VES2025-12-12: 267.7 VES2025-12-19: 282.5 VES2025-12-26: 291.4 VES2025-12-30: 298.1 VES2026-01-02: 301.4 VES2026-01-09: 325.4 VES2026-01-16: 341.7 VES2026-01-23: 352.7 VES2026-01-30: 367.3 VES2026-02-06: 381.1 VES2026-02-13: 393.2 VES2026-02-20: 402.3 VES2026-02-27: 417.4 VES2026-03-06: 431.0 VES2026-03-13: 443.3 VES2026-03-20: 455.3 VES2026-03-27: 468.5 VES2026-04-01: 473.9 VES2026-04-10: 476.4 VES2026-04-17: 480.3 VES2026-04-24: 483.9 VES2026-04-30: 487.1 VES2026-05-08: 499.9 VES2026-05-15: 515.2 VES2026-05-22: 526.9 VES2026-05-29: 549.4 VES2026-06-05: 563.3 VES2026-06-12: 582.7 VES2026-06-19: 607.4 VES2026-06-26: 622.2 VES2026-07-03: 653.0 VES2026-07-10: 709.7 VES2026-07-17: 732.5 VES2026-07-23: 737.9 VES2026-07-31: 746.6 VES2026-08-07: 756.7 VES2026-08-14: 771.1 VES2026-08-20: 777.4 VES
Source: Central Bank of Venezuela published rates · chart data from the AllRatesToday API (/api/v1/central-bank/bcv/history?source=USD&target=VES).

The rate the law requires, dated the way the law dates it

Venezuelan accounting and tax practice are required to use the BCV reference rate, and each published rate legally applies on its Fecha Valor — the business day after the trading session it summarises. The API dates every rate by that Fecha Valor, so the value you fetch for a date is the value that legally applied on it. Where the parallel market diverges — as it often has — the official print is precisely what filings must cite.

Why official rates, not market rates

A live mid-market feed answers "what is USD/VES trading at right now?" — the right tool for checkouts and dashboards. But accountants, auditors, and tax authorities ask a different question: "which rate were you required to use for this date?" That answer comes from the Central Bank of Venezuela’s published rates, and it never changes after publication.

Get the latest rates (REST)

curl "https://allratestoday.com/api/v1/central-bank/bcv/latest" \
  -H "Authorization: Bearer YOUR_API_KEY"

The response is the bank's most recent published table — every rate and the publication date. The latest rates are available on every plan, including the free tier (300 requests/month, no credit card).

The npm SDK

npm install central-bank-of-venezuela-exchange-rate
import { getRate, getLatestRates } from 'central-bank-of-venezuela-exchange-rate';

// One pair at the official rate
const pair = await getRate('USD', 'VES', { apiKey: 'art_live_...' });
console.log(pair.rate, pair.rate_date);

// The bank's full published table
const table = await getLatestRates({ apiKey: 'art_live_...' });
console.log(table.rate_date, table.rates.length);

Zero dependencies, TypeScript types included, and it runs anywhere fetch exists — Node 18+, Bun, Deno, and edge runtimes.

Historical rates for an invoice date

import { getRatesForDate, getHistory } from 'central-bank-of-venezuela-exchange-rate';

const day = await getRatesForDate('2026-08-18', { apiKey: 'art_live_...' });

const series = await getHistory(
  { source: 'USD', target: 'VES', from: '2026-01-01' },
  { apiKey: 'art_live_...' }
);

Historical dates and time series need a paid plan; the latest rates stay free.

Published vs derived pairs

If the Central Bank of Venezuela does not print a pair directly, the API resolves it from the bank's published rates — an inverse, or a cross via VES — and flags it derived: true with the method used. Official and computed values are never silently mixed, which is exactly the distinction an auditor will ask about.

The archive

We hold the full 21-currency bulletin with buying and selling sides back to 2020, and the USD series back to 2016 — through the 2018 and 2021 redenominations era into the current bolívar.

FAQ

Does the Central Bank of Venezuela have an official exchange rate API?

The bank publishes its official rates on its own site, and AllRatesToday serves the same published rates as clean JSON via REST or the central-bank-of-venezuela-exchange-rate npm package. The latest table is free.

How do I get the official Venezuela exchange rate for a past date?

The rates-for-date endpoint returns the official table for any archived date; non-publication days resolve to the most recent published date and are flagged, so audit trails stay honest. Historical dates require a paid plan; latest rates are free.

Is this the parallel ("black market") rate?

No. This is the official BCV reference rate — the only rate Venezuelan filings, audits and legal settlements may use. Parallel-market quotes are not official data and are not served.

Official Central Bank of Venezuela rates, as JSON

The latest rates are free — 300 requests/month, no credit card.

Get your free API key

Related Articles