Convert TRY to JPY
Turkish Lira → Japanese Yen
1 TRY = 3.220574 JPY(1 JPY = 0.310504 TRY)
Currency converter
1 TRY =
3.2206 JPY
TRY to JPY: last 30 days
Over the last 30 days, 1 TRY traded between 3.1616 and 3.3177 JPY, averaging 3.2275 JPY. The TRY/JPY rate is down 2.70% since 2026-08-28.
- 30-day high
- 3.3177
- 2026-09-01
- 30-day low
- 3.1616
- 2026-09-09
- 30-day average
- 3.2275
- Days with data: 30
- 30-day change
- -2.70%
- since 2026-08-28
3.3177
3.16162026-08-28 → 2026-09-26
| Date | 1 TRY in JPY | Daily change |
|---|---|---|
| 2026-09-26 | 3.2206 | 0.00% |
| 2026-09-25 | 3.2206 | -0.95% |
| 2026-09-24 | 3.2516 | +0.56% |
| 2026-09-23 | 3.2335 | +0.41% |
| 2026-09-22 | 3.2204 | -0.08% |
| 2026-09-21 | 3.2228 | -0.42% |
| 2026-09-20 | 3.2364 | 0.00% |
| 2026-09-19 | 3.2364 | 0.00% |
| 2026-09-18 | 3.2364 | +1.18% |
| 2026-09-17 | 3.1986 | +0.38% |
| 2026-09-16 | 3.1866 | -0.00% |
| 2026-09-15 | 3.1867 | +0.26% |
| 2026-09-14 | 3.1785 | +0.28% |
| 2026-09-13 | 3.1698 | 0.00% |
| 2026-09-12 | 3.1698 | 0.00% |
| Date | 1 TRY in JPY | Daily change |
|---|---|---|
| 2026-09-11 | 3.1698 | -0.30% |
| 2026-09-10 | 3.1793 | +0.56% |
| 2026-09-09 | 3.1616 | -0.70% |
| 2026-09-08 | 3.1841 | -0.35% |
| 2026-09-07 | 3.1951 | -0.94% |
| 2026-09-06 | 3.2254 | 0.00% |
| 2026-09-05 | 3.2254 | 0.00% |
| 2026-09-04 | 3.2254 | -0.11% |
| 2026-09-03 | 3.229 | -2.29% |
| 2026-09-02 | 3.3048 | -0.39% |
| 2026-09-01 | 3.3177 | +0.24% |
| 2026-08-31 | 3.3096 | -0.00% |
| 2026-08-30 | 3.3098 | 0.00% |
| 2026-08-29 | 3.3098 | 0.00% |
| 2026-08-28 | 3.3098 | — |
TRY to JPY conversion table
1 TRY3.2206 JPY
5 TRY16.1029 JPY
10 TRY32.2057 JPY
25 TRY80.5144 JPY
50 TRY161.0287 JPY
100 TRY322.0574 JPY
500 TRY1,610.2872 JPY
1,000 TRY3,220.5744 JPY
5,000 TRY16,102.872 JPY
10,000 TRY32,205.744 JPY
Get the TRY/JPY rate in your app
One GET request returns the latest TRY → 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/TRY/JPY"fetch('https://rate-api.com/api/v1/pair/TRY/JPY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 TRY = ${data.rate} JPY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/TRY/JPY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 TRY = {data['rate']} JPY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/TRY/JPY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 TRY = {$data['rate']} JPY\n";Example response
{
"success": true,
"pair": {
"from": "TRY",
"to": "JPY"
},
"rate": 3.2206,
"timestamp": 1790432032,
"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 TRYJapanese Yen → Turkish Lira0.3105Convert TRY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.