Convert DOP to JPY
Dominican Peso → Japanese Yen
1 DOP = 2.652681 JPY(1 JPY = 0.376977 DOP)
Currency converter
1 DOP =
2.6527 JPY
DOP to JPY: last 30 days
Over the last 30 days, 1 DOP traded between 2.6018 and 2.7284 JPY, averaging 2.6556 JPY. The DOP/JPY rate is down 2.34% since 2026-08-28.
- 30-day high
- 2.7284
- 2026-08-29
- 30-day low
- 2.6018
- 2026-09-09
- 30-day average
- 2.6556
- Days with data: 30
- 30-day change
- -2.34%
- since 2026-08-28
2.7284
2.60182026-08-28 → 2026-09-26
| Date | 1 DOP in JPY | Daily change |
|---|---|---|
| 2026-09-26 | 2.6527 | 0.00% |
| 2026-09-25 | 2.6527 | -0.35% |
| 2026-09-24 | 2.6621 | +0.32% |
| 2026-09-23 | 2.6537 | -0.31% |
| 2026-09-22 | 2.6621 | -0.36% |
| 2026-09-21 | 2.6717 | -0.09% |
| 2026-09-20 | 2.6742 | -0.02% |
| 2026-09-19 | 2.6746 | +0.32% |
| 2026-09-18 | 2.6659 | +0.40% |
| 2026-09-17 | 2.6553 | +1.21% |
| 2026-09-16 | 2.6235 | -0.21% |
| 2026-09-15 | 2.629 | +0.50% |
| 2026-09-14 | 2.6159 | +0.34% |
| 2026-09-13 | 2.6071 | +0.01% |
| 2026-09-12 | 2.6069 | -0.39% |
| Date | 1 DOP in JPY | Daily change |
|---|---|---|
| 2026-09-11 | 2.6171 | -0.25% |
| 2026-09-10 | 2.6236 | +0.84% |
| 2026-09-09 | 2.6018 | -0.19% |
| 2026-09-08 | 2.6069 | -0.26% |
| 2026-09-07 | 2.6138 | -1.35% |
| 2026-09-06 | 2.6495 | +0.37% |
| 2026-09-05 | 2.6398 | -0.00% |
| 2026-09-04 | 2.6399 | -0.73% |
| 2026-09-03 | 2.6594 | -1.90% |
| 2026-09-02 | 2.7109 | -0.27% |
| 2026-09-01 | 2.7182 | +0.16% |
| 2026-08-31 | 2.7139 | -0.24% |
| 2026-08-30 | 2.7204 | -0.29% |
| 2026-08-29 | 2.7284 | +0.45% |
| 2026-08-28 | 2.7162 | — |
DOP to JPY conversion table
1 DOP2.6527 JPY
5 DOP13.2634 JPY
10 DOP26.5268 JPY
25 DOP66.317 JPY
50 DOP132.6341 JPY
100 DOP265.2681 JPY
500 DOP1,326.3406 JPY
1,000 DOP2,652.6813 JPY
5,000 DOP13,263.406 JPY
10,000 DOP26,526.813 JPY
Get the DOP/JPY rate in your app
One GET request returns the latest DOP → JPY 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/JPY"fetch('https://rate-api.com/api/v1/pair/DOP/JPY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 DOP = ${data.rate} JPY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/DOP/JPY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 DOP = {data['rate']} JPY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/DOP/JPY');
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']} JPY\n";Example response
{
"success": true,
"pair": {
"from": "DOP",
"to": "JPY"
},
"rate": 2.6527,
"timestamp": 1790435062,
"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
JPY to DOPJapanese Yen → Dominican Peso0.37698Convert DOP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.