Banco Central de Bolivia Exchange Rate API: Official BOB Rates as JSON

Reviewed by Madhushan, Fintech Developer — August 2026

The Banco Central de Bolivia publishes the official exchange rates that accounting, tax, and customs practice in Bolivia 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 banco-central-de-bolivia-exchange-rate npm package.

USD → BOB — official Banco Central de Bolivia tipo de cambio oficial
Weekly observations, Aug '25 – Aug '26 · Bolivian bolivianos per 1 US dollar
81012Aug '25Nov '25Feb '26May '26Aug '2611.522025-08-22: 6.960 BOB2025-08-29: 6.960 BOB2025-09-05: 6.960 BOB2025-09-12: 6.960 BOB2025-09-19: 6.960 BOB2025-09-26: 6.960 BOB2025-10-03: 6.960 BOB2025-10-10: 6.960 BOB2025-10-17: 6.960 BOB2025-10-24: 6.960 BOB2025-10-31: 6.960 BOB2025-11-07: 6.960 BOB2025-11-13: 6.960 BOB2025-11-21: 6.960 BOB2025-11-28: 6.960 BOB2025-12-05: 6.960 BOB2025-12-12: 6.960 BOB2025-12-19: 6.960 BOB2025-12-24: 6.960 BOB2025-12-31: 6.960 BOB2026-01-09: 6.960 BOB2026-01-16: 6.960 BOB2026-01-22: 6.960 BOB2026-01-30: 6.960 BOB2026-02-06: 6.960 BOB2026-02-13: 6.960 BOB2026-02-20: 6.960 BOB2026-02-27: 6.960 BOB2026-03-06: 6.960 BOB2026-03-13: 6.960 BOB2026-03-20: 6.960 BOB2026-03-27: 6.960 BOB2026-04-02: 6.960 BOB2026-04-10: 6.960 BOB2026-04-17: 6.960 BOB2026-04-24: 6.960 BOB2026-04-30: 6.960 BOB2026-05-08: 6.960 BOB2026-05-15: 6.960 BOB2026-05-22: 6.960 BOB2026-05-29: 6.960 BOB2026-06-03: 6.960 BOB2026-06-12: 6.960 BOB2026-06-19: 6.960 BOB2026-06-28: 9.730 BOB2026-07-05: 9.830 BOB2026-07-12: 10.40 BOB2026-07-19: 10.85 BOB2026-07-26: 11.37 BOB2026-08-02: 12.13 BOB2026-08-09: 11.86 BOB2026-08-16: 11.58 BOB2026-08-20: 11.52 BOB
Source: Banco Central de Bolivia published rates · chart data from the AllRatesToday API (/api/v1/central-bank/bcbol/history?source=USD&target=BOB).

A peg that finally moved

From 2011 the boliviano was held at 6.96 to the dollar — fifteen years of a flat official line. In 2026 the bank moved the official rate, and the tipo de cambio oficial (TCO) now trades well above the old peg. That makes the official series — the one Bolivian filings, customs valuations and audits must cite — newly consequential, and the archive records both eras. The BCB publishes its table every calendar day, weekends included.

Why official rates, not market rates

A live mid-market feed answers "what is USD/BOB 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 Banco Central de Bolivia’s published rates, and it never changes after publication.

Get the latest rates (REST)

curl "https://allratestoday.com/api/v1/central-bank/bcbol/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 banco-central-de-bolivia-exchange-rate
import { getRate, getLatestRates } from 'banco-central-de-bolivia-exchange-rate';

// One pair at the official rate
const pair = await getRate('USD', 'BOB', { 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 'banco-central-de-bolivia-exchange-rate';

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

const series = await getHistory(
  { source: 'USD', target: 'BOB', 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 Banco Central de Bolivia does not print a pair directly, the API resolves it from the bank's published rates — an inverse, or a cross via BOB — 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

The archive is loaded from 2016 — a decade of the 6.96 peg, then the 2026 break that ended it.

FAQ

Does the Banco Central de Bolivia 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 banco-central-de-bolivia-exchange-rate npm package. The latest table is free.

How do I get the official Bolivia 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.

What happened to the 6.96 peg?

The BCB moved the official rate in 2026 after fifteen years of the fixed parity. The archived series shows the flat 6.96 era and the adjustment — exactly the record an audit of boliviano-denominated accounts needs.

Official Banco Central de Bolivia rates, as JSON

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

Get your free API key

Related Articles