Convert DOP to USD
Dominican Peso → US Dollar
1 DOP = 0.0168328 USD(1 USD = 59.407856 DOP)
Currency converter
1 DOP =
0.016833 USD
DOP to USD: last 30 days
Over the last 30 days, 1 DOP traded between 0.016758 and 0.017087 USD, averaging 0.016942 USD. The DOP/USD rate is down 1.04% since 2026-08-28.
- 30-day high
- 0.017087
- 2026-08-29
- 30-day low
- 0.016758
- 2026-09-24
- 30-day average
- 0.016942
- Days with data: 30
- 30-day change
- -1.04%
- since 2026-08-28
0.017087
0.0167582026-08-28 → 2026-09-26
| Date | 1 DOP in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.016833 | 0.00% |
| 2026-09-25 | 0.016833 | +0.45% |
| 2026-09-24 | 0.016758 | -0.28% |
| 2026-09-23 | 0.016804 | -0.78% |
| 2026-09-22 | 0.016936 | -0.31% |
| 2026-09-21 | 0.016988 | +0.30% |
| 2026-09-20 | 0.016937 | -0.02% |
| 2026-09-19 | 0.01694 | +0.32% |
| 2026-09-18 | 0.016885 | -1.00% |
| 2026-09-17 | 0.017055 | +0.80% |
| 2026-09-16 | 0.016921 | -0.24% |
| 2026-09-15 | 0.016961 | +0.21% |
| 2026-09-14 | 0.016926 | +0.01% |
| 2026-09-13 | 0.016925 | +0.01% |
| 2026-09-12 | 0.016923 | -0.39% |
| Date | 1 DOP in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.01699 | -0.16% |
| 2026-09-10 | 0.017017 | +0.24% |
| 2026-09-09 | 0.016975 | +0.48% |
| 2026-09-08 | 0.016895 | +0.03% |
| 2026-09-07 | 0.01689 | -0.39% |
| 2026-09-06 | 0.016957 | +0.37% |
| 2026-09-05 | 0.016895 | -0.00% |
| 2026-09-04 | 0.016895 | -0.89% |
| 2026-09-03 | 0.017046 | +0.36% |
| 2026-09-02 | 0.016986 | +0.08% |
| 2026-09-01 | 0.016972 | -0.11% |
| 2026-08-31 | 0.016991 | -0.27% |
| 2026-08-30 | 0.017037 | -0.29% |
| 2026-08-29 | 0.017087 | +0.45% |
| 2026-08-28 | 0.01701 | — |
DOP to USD conversion table
1 DOP0.016833 USD
5 DOP0.084164 USD
10 DOP0.16833 USD
25 DOP0.42082 USD
50 DOP0.84164 USD
100 DOP1.6833 USD
500 DOP8.4164 USD
1,000 DOP16.8328 USD
5,000 DOP84.164 USD
10,000 DOP168.3279 USD
Get the DOP/USD rate in your app
One GET request returns the latest DOP → USD rate as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/pair/DOP/USD"fetch('https://rate-api.com/api/v1/pair/DOP/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 DOP = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/DOP/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 DOP = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/DOP/USD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 DOP = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "DOP",
"to": "USD"
},
"rate": 0.0168,
"timestamp": 1790435061,
"date": "2026-09-26"
}Replace YOUR_API_KEY with a key from your dashboard. The same key also works in the URL path or an X-API-Key header.
Get your free API key
Free plan: 2,500 requests a month, no credit card. Upgrade any time for conversion, historical rates and higher limits.
Related conversions
USD to DOPUS Dollar → Dominican Peso59.4079Convert DOP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.