Convert USD to JPY
US Dollar → Japanese Yen
1 USD = 157.59011 JPY(1 JPY = 0.00634558 USD)
Currency converter
1 USD =
157.5901 JPY
USD to JPY: last 30 days
Over the last 30 days, 1 USD traded between 153.27 and 160.16 JPY, averaging 156.7424 JPY. The USD/JPY rate is down 1.31% since 2026-08-28.
- 30-day high
- 160.16
- 2026-09-01
- 30-day low
- 153.27
- 2026-09-09
- 30-day average
- 156.7424
- Days with data: 30
- 30-day change
- -1.31%
- since 2026-08-28
160.16
153.272026-08-28 → 2026-09-26
| Date | 1 USD in JPY | Daily change |
|---|---|---|
| 2026-09-26 | 157.5901 | 0.00% |
| 2026-09-25 | 157.5901 | -0.80% |
| 2026-09-24 | 158.8546 | +0.59% |
| 2026-09-23 | 157.9178 | +0.47% |
| 2026-09-22 | 157.18 | -0.06% |
| 2026-09-21 | 157.27 | -0.39% |
| 2026-09-20 | 157.89 | 0.00% |
| 2026-09-19 | 157.89 | 0.00% |
| 2026-09-18 | 157.89 | +1.41% |
| 2026-09-17 | 155.69 | +0.41% |
| 2026-09-16 | 155.05 | +0.03% |
| 2026-09-15 | 155 | +0.29% |
| 2026-09-14 | 154.55 | +0.33% |
| 2026-09-13 | 154.04 | 0.00% |
| 2026-09-12 | 154.04 | 0.00% |
| Date | 1 USD in JPY | Daily change |
|---|---|---|
| 2026-09-11 | 154.04 | -0.09% |
| 2026-09-10 | 154.18 | +0.59% |
| 2026-09-09 | 153.27 | -0.67% |
| 2026-09-08 | 154.3 | -0.29% |
| 2026-09-07 | 154.75 | -0.96% |
| 2026-09-06 | 156.25 | 0.00% |
| 2026-09-05 | 156.25 | 0.00% |
| 2026-09-04 | 156.25 | +0.15% |
| 2026-09-03 | 156.01 | -2.25% |
| 2026-09-02 | 159.6 | -0.35% |
| 2026-09-01 | 160.16 | +0.27% |
| 2026-08-31 | 159.73 | +0.03% |
| 2026-08-30 | 159.68 | 0.00% |
| 2026-08-29 | 159.68 | 0.00% |
| 2026-08-28 | 159.68 | — |
USD to JPY conversion table
1 USD157.5901 JPY
5 USD787.9505 JPY
10 USD1,575.9011 JPY
25 USD3,939.7527 JPY
50 USD7,879.5054 JPY
100 USD15,759.011 JPY
500 USD78,795.054 JPY
1,000 USD157,590.11 JPY
5,000 USD787,950.54 JPY
10,000 USD1,575,901.1 JPY
Get the USD/JPY rate in your app
One GET request returns the latest USD → 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/USD/JPY"fetch('https://rate-api.com/api/v1/pair/USD/JPY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} JPY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/JPY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} JPY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/JPY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} JPY\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "JPY"
},
"rate": 157.5901,
"timestamp": 1790429297,
"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 USDJapanese Yen → US Dollar0.0063456Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.