Real-time Telegram Stars to USDT exchange rates via Fragment blockchain
* Process: Stars → TON (via Fragment) → USDT (via exchanges). TON volatility and network fees may affect final amounts.
Integrate real-time exchange rates into your applications using our public API endpoints:
https://bes-dev.github.io/telegram_stars_rates/api.json
Clean JSON response with current rates and metadata.
https://bes-dev.github.io/telegram_stars_rates/rates.json
Full response including transaction data and statistics.
// Fetch current exchange rate
const response = await fetch('https://bes-dev.github.io/telegram_stars_rates/api.json');
const data = await response.json();
console.log(`1 Star = $${data.usdt_per_star} USDT`);
console.log(`1000 Stars = $${(data.usdt_per_star * 1000).toFixed(2)} USDT`);
import requests
# Get current exchange rate
response = requests.get('https://bes-dev.github.io/telegram_stars_rates/api.json')
data = response.json()
print(f"1 Star = ${data['usdt_per_star']:.6f} USDT")
print(f"1000 Stars = ${data['usdt_per_star'] * 1000:.2f} USDT")
curl -s https://bes-dev.github.io/telegram_stars_rates/api.json | jq '.'
{
"usdt_per_star": 0.015015,
"ton_per_star": 0.004354,
"usdt_per_ton": 3.449,
"timestamp": "2025-08-13T12:59:34Z",
"transactions_analyzed": 100,
"source": "fragment_blockchain_analysis"
}