Convert DOP to EUR
Dominican Peso → Euro
1 DOP = 0.0147617 EUR(1 EUR = 67.742778 DOP)
Currency converter
1 DOP =
0.014762 EUR
DOP to EUR: last 30 days
Over the last 30 days, 1 DOP traded between 0.014533 and 0.014855 EUR, averaging 0.01467 EUR. The DOP/EUR rate is up 1.04% since 2026-08-28.
- 30-day high
- 0.014855
- 2026-09-17
- 30-day low
- 0.014533
- 2026-09-07
- 30-day average
- 0.01467
- Days with data: 30
- 30-day change
- +1.04%
- since 2026-08-28
0.014855
0.0145332026-08-28 → 2026-09-26
| Date | 1 DOP in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.014762 | 0.00% |
| 2026-09-25 | 0.014762 | +0.13% |
| 2026-09-24 | 0.014743 | +0.11% |
| 2026-09-23 | 0.014726 | -0.33% |
| 2026-09-22 | 0.014775 | -0.07% |
| 2026-09-21 | 0.014785 | +0.04% |
| 2026-09-20 | 0.014779 | -0.02% |
| 2026-09-19 | 0.014781 | +0.32% |
| 2026-09-18 | 0.014734 | -0.82% |
| 2026-09-17 | 0.014855 | +1.29% |
| 2026-09-16 | 0.014666 | -0.22% |
| 2026-09-15 | 0.014699 | +0.31% |
| 2026-09-14 | 0.014653 | +0.36% |
| 2026-09-13 | 0.0146 | +0.01% |
| 2026-09-12 | 0.014599 | -0.39% |
| Date | 1 DOP in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.014656 | +0.05% |
| 2026-09-10 | 0.014649 | +0.55% |
| 2026-09-09 | 0.014568 | +0.15% |
| 2026-09-08 | 0.014547 | +0.10% |
| 2026-09-07 | 0.014533 | -0.39% |
| 2026-09-06 | 0.014591 | +0.37% |
| 2026-09-05 | 0.014537 | -0.00% |
| 2026-09-04 | 0.014537 | -0.95% |
| 2026-09-03 | 0.014676 | +0.04% |
| 2026-09-02 | 0.014671 | +0.19% |
| 2026-09-01 | 0.014643 | -0.06% |
| 2026-08-31 | 0.014652 | +0.13% |
| 2026-08-30 | 0.014633 | -0.29% |
| 2026-08-29 | 0.014676 | +0.45% |
| 2026-08-28 | 0.01461 | — |
DOP to EUR conversion table
1 DOP0.014762 EUR
5 DOP0.073809 EUR
10 DOP0.14762 EUR
25 DOP0.36904 EUR
50 DOP0.73809 EUR
100 DOP1.4762 EUR
500 DOP7.3809 EUR
1,000 DOP14.7617 EUR
5,000 DOP73.8086 EUR
10,000 DOP147.6172 EUR
Get the DOP/EUR rate in your app
One GET request returns the latest DOP → EUR 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/EUR"fetch('https://rate-api.com/api/v1/pair/DOP/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 DOP = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/DOP/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 DOP = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/DOP/EUR');
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']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "DOP",
"to": "EUR"
},
"rate": 0.0148,
"timestamp": 1790435112,
"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
EUR to DOPEuro → Dominican Peso67.7428Convert DOP to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.