Convert DOP to AUD
Dominican Peso → Australian Dollar
1 DOP = 0.0239435 AUD(1 AUD = 41.764968 DOP)
Currency converter
1 DOP =
0.023944 AUD
DOP to AUD: last 30 days
Over the last 30 days, 1 DOP traded between 0.023412 and 0.023974 AUD, averaging 0.023701 AUD. The DOP/AUD rate is up 1.27% since 2026-08-28.
- 30-day high
- 0.023974
- 2026-09-17
- 30-day low
- 0.023412
- 2026-09-07
- 30-day average
- 0.023701
- Days with data: 30
- 30-day change
- +1.27%
- since 2026-08-28
0.023974
0.0234122026-08-28 → 2026-09-26
| Date | 1 DOP in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.023944 | 0.00% |
| 2026-09-25 | 0.023944 | +0.40% |
| 2026-09-24 | 0.023849 | +0.30% |
| 2026-09-23 | 0.023777 | -0.18% |
| 2026-09-22 | 0.023819 | +0.08% |
| 2026-09-21 | 0.0238 | +0.05% |
| 2026-09-20 | 0.023788 | -0.02% |
| 2026-09-19 | 0.023792 | +0.32% |
| 2026-09-18 | 0.023715 | -1.08% |
| 2026-09-17 | 0.023974 | +1.05% |
| 2026-09-16 | 0.023724 | -0.33% |
| 2026-09-15 | 0.023803 | +0.27% |
| 2026-09-14 | 0.02374 | +0.61% |
| 2026-09-13 | 0.023596 | +0.01% |
| 2026-09-12 | 0.023594 | -0.39% |
| Date | 1 DOP in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.023687 | +0.01% |
| 2026-09-10 | 0.023684 | +0.80% |
| 2026-09-09 | 0.023495 | +0.33% |
| 2026-09-08 | 0.023418 | +0.03% |
| 2026-09-07 | 0.023412 | -0.54% |
| 2026-09-06 | 0.02354 | +0.37% |
| 2026-09-05 | 0.023453 | -0.00% |
| 2026-09-04 | 0.023454 | -1.03% |
| 2026-09-03 | 0.023698 | -0.28% |
| 2026-09-02 | 0.023765 | -0.00% |
| 2026-09-01 | 0.023765 | +0.17% |
| 2026-08-31 | 0.023724 | +0.19% |
| 2026-08-30 | 0.023679 | -0.29% |
| 2026-08-29 | 0.023749 | +0.45% |
| 2026-08-28 | 0.023643 | — |
DOP to AUD conversion table
1 DOP0.023944 AUD
5 DOP0.11972 AUD
10 DOP0.23944 AUD
25 DOP0.59859 AUD
50 DOP1.1972 AUD
100 DOP2.3944 AUD
500 DOP11.9718 AUD
1,000 DOP23.9435 AUD
5,000 DOP119.7176 AUD
10,000 DOP239.4351 AUD
Get the DOP/AUD rate in your app
One GET request returns the latest DOP → AUD 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/AUD"fetch('https://rate-api.com/api/v1/pair/DOP/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 DOP = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/DOP/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 DOP = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/DOP/AUD');
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']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "DOP",
"to": "AUD"
},
"rate": 0.0239,
"timestamp": 1790432063,
"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
AUD to DOPAustralian Dollar → Dominican Peso41.765Convert DOP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.