Convert USD to TMT
US Dollar → Turkmenistani Manat
1 USD = 3.5 TMT(1 TMT = 0.285714 USD)
Currency converter
1 USD =
3.5 TMT
USD to TMT: last 30 days
Over the last 30 days, 1 USD traded between 3.4963 and 3.5746 TMT, averaging 3.5061 TMT. The USD/TMT rate is up 0.09% since 2026-08-28.
- 30-day high
- 3.5746
- 2026-09-05
- 30-day low
- 3.4963
- 2026-09-01
- 30-day average
- 3.5061
- Days with data: 30
- 30-day change
- +0.09%
- since 2026-08-28
3.5746
3.49632026-08-28 → 2026-09-26
| Date | 1 USD in TMT | Daily change |
|---|---|---|
| 2026-09-26 | 3.5 | 0.00% |
| 2026-09-25 | 3.5 | 0.00% |
| 2026-09-24 | 3.5 | 0.00% |
| 2026-09-23 | 3.5 | +0.06% |
| 2026-09-22 | 3.4977 | -0.35% |
| 2026-09-21 | 3.5099 | +0.28% |
| 2026-09-20 | 3.5 | -0.00% |
| 2026-09-19 | 3.5 | -0.28% |
| 2026-09-18 | 3.51 | +0.30% |
| 2026-09-17 | 3.4995 | -0.25% |
| 2026-09-16 | 3.5082 | +0.29% |
| 2026-09-15 | 3.4979 | -0.34% |
| 2026-09-14 | 3.51 | +0.09% |
| 2026-09-13 | 3.5067 | -0.09% |
| 2026-09-12 | 3.51 | +0.00% |
| Date | 1 USD in TMT | Daily change |
|---|---|---|
| 2026-09-11 | 3.5099 | +0.10% |
| 2026-09-10 | 3.5065 | -0.04% |
| 2026-09-09 | 3.5079 | +0.23% |
| 2026-09-08 | 3.5 | +0.00% |
| 2026-09-07 | 3.4999 | -0.36% |
| 2026-09-06 | 3.5126 | -1.74% |
| 2026-09-05 | 3.5746 | +2.16% |
| 2026-09-04 | 3.4992 | +0.06% |
| 2026-09-03 | 3.497 | -0.31% |
| 2026-09-02 | 3.508 | +0.34% |
| 2026-09-01 | 3.4963 | -0.39% |
| 2026-08-31 | 3.5099 | -0.00% |
| 2026-08-30 | 3.51 | +0.12% |
| 2026-08-29 | 3.5057 | +0.25% |
| 2026-08-28 | 3.4969 | — |
USD to TMT conversion table
1 USD3.5 TMT
5 USD17.5 TMT
10 USD35 TMT
25 USD87.5 TMT
50 USD175 TMT
100 USD350 TMT
500 USD1,750 TMT
1,000 USD3,500 TMT
5,000 USD17,500 TMT
10,000 USD35,000 TMT
Get the USD/TMT rate in your app
One GET request returns the latest USD → TMT 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/TMT"fetch('https://rate-api.com/api/v1/pair/USD/TMT', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} TMT`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/TMT",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} TMT")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/TMT');
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']} TMT\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "TMT"
},
"rate": 3.5,
"timestamp": 1790429306,
"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
TMT to USDTurkmenistani Manat → US Dollar0.28571Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.