Convert USD to TRY
US Dollar → Turkish Lira
1 USD = 48.932299 TRY(1 TRY = 0.0204364 USD)
Currency converter
1 USD =
48.9323 TRY
USD to TRY: last 30 days
Over the last 30 days, 1 USD traded between 48.245 and 48.9323 TRY, averaging 48.5659 TRY. The USD/TRY rate is up 1.42% since 2026-08-28.
- 30-day high
- 48.9323
- 2026-09-25
- 30-day low
- 48.245
- 2026-08-28
- 30-day average
- 48.5659
- Days with data: 30
- 30-day change
- +1.42%
- since 2026-08-28
48.9323
48.2452026-08-28 → 2026-09-26
| Date | 1 USD in TRY | Daily change |
|---|---|---|
| 2026-09-26 | 48.9323 | 0.00% |
| 2026-09-25 | 48.9323 | +0.16% |
| 2026-09-24 | 48.8548 | +0.04% |
| 2026-09-23 | 48.8374 | +0.06% |
| 2026-09-22 | 48.808 | +0.02% |
| 2026-09-21 | 48.799 | +0.03% |
| 2026-09-20 | 48.785 | 0.00% |
| 2026-09-19 | 48.785 | 0.00% |
| 2026-09-18 | 48.785 | +0.23% |
| 2026-09-17 | 48.675 | +0.04% |
| 2026-09-16 | 48.657 | +0.03% |
| 2026-09-15 | 48.64 | +0.03% |
| 2026-09-14 | 48.623 | +0.06% |
| 2026-09-13 | 48.596 | 0.00% |
| 2026-09-12 | 48.596 | 0.00% |
| Date | 1 USD in TRY | Daily change |
|---|---|---|
| 2026-09-11 | 48.596 | +0.21% |
| 2026-09-10 | 48.495 | +0.04% |
| 2026-09-09 | 48.478 | +0.04% |
| 2026-09-08 | 48.46 | +0.06% |
| 2026-09-07 | 48.433 | -0.02% |
| 2026-09-06 | 48.443 | 0.00% |
| 2026-09-05 | 48.443 | 0.00% |
| 2026-09-04 | 48.443 | +0.26% |
| 2026-09-03 | 48.315 | +0.05% |
| 2026-09-02 | 48.293 | +0.04% |
| 2026-09-01 | 48.274 | +0.02% |
| 2026-08-31 | 48.262 | +0.04% |
| 2026-08-30 | 48.245 | 0.00% |
| 2026-08-29 | 48.245 | 0.00% |
| 2026-08-28 | 48.245 | — |
USD to TRY conversion table
1 USD48.9323 TRY
5 USD244.6615 TRY
10 USD489.323 TRY
25 USD1,223.3075 TRY
50 USD2,446.6149 TRY
100 USD4,893.2299 TRY
500 USD24,466.149 TRY
1,000 USD48,932.299 TRY
5,000 USD244,661.49 TRY
10,000 USD489,322.99 TRY
Get the USD/TRY rate in your app
One GET request returns the latest USD → TRY 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/TRY"fetch('https://rate-api.com/api/v1/pair/USD/TRY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} TRY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/TRY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} TRY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/TRY');
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']} TRY\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "TRY"
},
"rate": 48.9323,
"timestamp": 1790429260,
"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
TRY to USDTurkish Lira → US Dollar0.020436Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.