Home Documentation Central Bank Rates Tax Authority Rates Playground Pricing API Status Blog About FAQ Contact Us

Banco Central de la República Dominicana Exchange Rate API

Official Banco Central de la República Dominicana (Dominican Republic) daily exchange rates as JSON: 14 currencies, history back to 1991. The published DOP rates required for tax, audits, and compliant invoicing.

Dominican Republic flagBanco Central de la República Dominicana official daily exchange rates as JSON: 14 currencies against the DOP, history back to 1991. Latest table on every plan. Get your API key.

About Banco Central de la República Dominicana

The Banco Central de la República Dominicana publishes the reference buy and sell rates for the US dollar in the spot market each business day (history to 1991), plus a convertible-rate table for around 14 other currencies since 2004 — the official series behind peso invoicing, bank settlement, and DGII tax filings.

Quick start

One request for the pair you need — USD to DOP at the official Banco Central de la República Dominicana rate:

curl "https://allratestoday.com/api/v1/central-bank/bcrd/latest?source=USD&target=DOP" \
  -H "Authorization: Bearer art_live_your_key"

Or the bank's full published table:

curl "https://allratestoday.com/api/v1/central-bank/bcrd/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/bcrd/history?source=USD&target=DOP&from=2025-01-01" \
  -H "Authorization: Bearer art_live_your_key"

Latest published rates (2026-08-10)

The most recent table as published by Banco Central de la República Dominicana — exactly what the /latest endpoint returns right now. Values are DOP per 1 unit of each currency:

Download this table: Excel (.xlsx) CSV

BaseQuoteTypeRate
AUD DOP reference 41.1409
BRL DOP reference 11.4212
CAD DOP reference 41.7407
CHF DOP reference 71.9839
CNY DOP reference 8.629
DKK DOP reference 8.9955
EUR DOP reference 67.2489
GBP DOP reference 78.5716
JPY DOP reference 0.3685
NOK DOP reference 6.1213
SEK DOP reference 6.1328
USD DOP buy 58.199
USD DOP reference 58.199
USD DOP sell 58.5403
VES DOP reference 0.077
XDR DOP reference 79.5538

Node.js / TypeScript client

A dedicated zero-dependency npm package wraps these endpoints — bcrd-exchange-rate:

npm install bcrd-exchange-rate
import { getRate } from 'bcrd-exchange-rate';

const pair = await getRate('USD', 'DOP', { 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.

Why use the official Banco Central de la República Dominicana rate?

Live market rates move continuously, but tax filings, customs declarations, audits, and statutory accounting in Dominican Republic and beyond typically require the official rate published by Banco Central de la República Dominicana 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.

Pairs the bank doesn't print directly are resolved from its table (inverse or cross via DOP) and explicitly flagged "derived": true — so what the bank printed and what was computed are never confused.

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

Is there an API for Banco Central de la República Dominicana exchange rates?

Yes — this one. Official daily DOP rates as clean JSON, latest table on every plan including free.

How often are the rates updated?

Banco Central de la República Dominicana publishes once per business day; the API ingests each new table shortly after publication (latest: 2026-08-10).

Are these the official rates?

Yes — ingested from Banco Central de la República Dominicana's own published data, served unmodified with the bank's publication date. Anything computed rather than published is flagged derived.

Banco Central de la República Dominicana rates, one API key

Latest table on every plan. History back to 1991 on paid plans. No credit card to start.

Get Free API Key Read the Docs