⭐ Telegram Stars ↔ USDT Converter

Real-time Telegram Stars to USDT exchange rates via Fragment blockchain

Loading...
1 Star = $ USDT
Last Updated: -
Transactions: -
⭐ STARS
💵 USDT
-
Min Rate
-
Max Rate
-
Median Rate

💡 Withdrawal Process & Fees

Minimum Withdrawal: 1,000 Stars
Withdrawal Delay: 21 days hold
Conversion Platform: Fragment.com
TON Network Fees: ~0.1-0.5 TON

* Process: Stars → TON (via Fragment) → USDT (via exchanges). TON volatility and network fees may affect final amounts.

🔧 Developer Integration

Integrate real-time exchange rates into your applications using our public API endpoints:

Simple API (Recommended)

https://bes-dev.github.io/telegram_stars_rates/api.json

Clean JSON response with current rates and metadata.

Detailed API

https://bes-dev.github.io/telegram_stars_rates/rates.json

Full response including transaction data and statistics.

Usage Examples

JavaScript / Node.js
// 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`);
Python
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
curl -s https://bes-dev.github.io/telegram_stars_rates/api.json | jq '.'

API Response Format

{
  "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"
}

Integration Notes

  • Update Frequency: Rates are updated daily via GitHub Actions
  • CORS: Enabled for all origins - safe for browser usage
  • Rate Limits: No rate limits on public endpoints
  • Caching: Consider caching responses for 1-24 hours
  • Error Handling: Always check HTTP status and handle network errors