Convert USD to TJS
US Dollar → Tajikistani Somoni
1 USD = 9.21847 TJS(1 TJS = 0.108478 USD)
Currency converter
1 USD =
9.2185 TJS
USD to TJS: last 30 days
Over the last 30 days, 1 USD traded between 9.2185 and 9.2715 TJS, averaging 9.2379 TJS. The USD/TJS rate is down 0.18% since 2026-08-28.
- 30-day high
- 9.2715
- 2026-08-31
- 30-day low
- 9.2185
- 2026-09-25
- 30-day average
- 9.2379
- Days with data: 30
- 30-day change
- -0.18%
- since 2026-08-28
9.2715
9.21852026-08-28 → 2026-09-26
| Date | 1 USD in TJS | Daily change |
|---|---|---|
| 2026-09-26 | 9.2185 | 0.00% |
| 2026-09-25 | 9.2185 | -0.43% |
| 2026-09-24 | 9.2583 | +0.22% |
| 2026-09-23 | 9.238 | +0.01% |
| 2026-09-22 | 9.2368 | +0.11% |
| 2026-09-21 | 9.2268 | -0.15% |
| 2026-09-20 | 9.2405 | +0.13% |
| 2026-09-19 | 9.2283 | +0.05% |
| 2026-09-18 | 9.2238 | -0.41% |
| 2026-09-17 | 9.2622 | +0.39% |
| 2026-09-16 | 9.2265 | -0.10% |
| 2026-09-15 | 9.236 | -0.08% |
| 2026-09-14 | 9.2436 | -0.09% |
| 2026-09-13 | 9.2518 | +0.06% |
| 2026-09-12 | 9.2464 | +0.09% |
| Date | 1 USD in TJS | Daily change |
|---|---|---|
| 2026-09-11 | 9.2385 | +0.02% |
| 2026-09-10 | 9.2366 | +0.02% |
| 2026-09-09 | 9.2347 | +0.05% |
| 2026-09-08 | 9.2303 | +0.07% |
| 2026-09-07 | 9.2234 | -0.35% |
| 2026-09-06 | 9.2562 | +0.25% |
| 2026-09-05 | 9.2333 | +0.07% |
| 2026-09-04 | 9.2269 | -0.02% |
| 2026-09-03 | 9.2283 | -0.11% |
| 2026-09-02 | 9.2381 | +0.13% |
| 2026-09-01 | 9.2261 | -0.49% |
| 2026-08-31 | 9.2715 | +0.16% |
| 2026-08-30 | 9.2567 | +0.13% |
| 2026-08-29 | 9.2447 | +0.11% |
| 2026-08-28 | 9.235 | — |
USD to TJS conversion table
1 USD9.2185 TJS
5 USD46.0924 TJS
10 USD92.1847 TJS
25 USD230.4618 TJS
50 USD460.9235 TJS
100 USD921.847 TJS
500 USD4,609.2352 TJS
1,000 USD9,218.4704 TJS
5,000 USD46,092.352 TJS
10,000 USD92,184.704 TJS
Get the USD/TJS rate in your app
One GET request returns the latest USD → TJS 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/TJS"fetch('https://rate-api.com/api/v1/pair/USD/TJS', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} TJS`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/TJS",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} TJS")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/TJS');
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']} TJS\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "TJS"
},
"rate": 9.2185,
"timestamp": 1790447429,
"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
TJS to USDTajikistani Somoni → US Dollar0.10848Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.