Convert JPY to USD
Japanese Yen → US Dollar
1 JPY = 0.00634558 USD(1 USD = 157.59011 JPY)
Currency converter
1 JPY =
0.0063456 USD
JPY to USD: last 30 days
Over the last 30 days, 1 JPY traded between 0.0062438 and 0.0065244 USD, averaging 0.006381 USD. The JPY/USD rate is up 1.33% since 2026-08-28.
- 30-day high
- 0.0065244
- 2026-09-09
- 30-day low
- 0.0062438
- 2026-09-01
- 30-day average
- 0.006381
- Days with data: 30
- 30-day change
- +1.33%
- since 2026-08-28
0.0065244
0.00624382026-08-28 → 2026-09-26
| Date | 1 JPY in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.0063456 | 0.00% |
| 2026-09-25 | 0.0063456 | +0.80% |
| 2026-09-24 | 0.0062951 | -0.59% |
| 2026-09-23 | 0.0063324 | -0.47% |
| 2026-09-22 | 0.0063621 | +0.06% |
| 2026-09-21 | 0.0063585 | +0.39% |
| 2026-09-20 | 0.0063335 | 0.00% |
| 2026-09-19 | 0.0063335 | 0.00% |
| 2026-09-18 | 0.0063335 | -1.39% |
| 2026-09-17 | 0.006423 | -0.41% |
| 2026-09-16 | 0.0064495 | -0.03% |
| 2026-09-15 | 0.0064516 | -0.29% |
| 2026-09-14 | 0.0064704 | -0.33% |
| 2026-09-13 | 0.0064918 | 0.00% |
| 2026-09-12 | 0.0064918 | 0.00% |
| Date | 1 JPY in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.0064918 | +0.09% |
| 2026-09-10 | 0.0064859 | -0.59% |
| 2026-09-09 | 0.0065244 | +0.67% |
| 2026-09-08 | 0.0064809 | +0.29% |
| 2026-09-07 | 0.006462 | +0.97% |
| 2026-09-06 | 0.0064 | 0.00% |
| 2026-09-05 | 0.0064 | 0.00% |
| 2026-09-04 | 0.0064 | -0.15% |
| 2026-09-03 | 0.0064098 | +2.30% |
| 2026-09-02 | 0.0062657 | +0.35% |
| 2026-09-01 | 0.0062438 | -0.27% |
| 2026-08-31 | 0.0062606 | -0.03% |
| 2026-08-30 | 0.0062625 | 0.00% |
| 2026-08-29 | 0.0062625 | 0.00% |
| 2026-08-28 | 0.0062625 | — |
JPY to USD conversion table
1 JPY0.0063456 USD
5 JPY0.031728 USD
10 JPY0.063456 USD
25 JPY0.15864 USD
50 JPY0.31728 USD
100 JPY0.63456 USD
500 JPY3.1728 USD
1,000 JPY6.3456 USD
5,000 JPY31.7279 USD
10,000 JPY63.4558 USD
Get the JPY/USD rate in your app
One GET request returns the latest JPY → 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/JPY/USD?precision=6"fetch('https://rate-api.com/api/v1/pair/JPY/USD?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JPY = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JPY/USD?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JPY = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JPY/USD?precision=6');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 JPY = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "JPY",
"to": "USD"
},
"rate": 0.006346,
"timestamp": 1790429290,
"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 JPYUS Dollar → Japanese Yen157.5901Convert JPY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.