TradesQuote tracks the top 100 cryptocurrencies, surfaces movers, and fires alerts straight to your app — with zero infrastructure on your end.
No scraping. No rate-limit headaches. No infrastructure. One API key and you're live.
Fetch real-time prices, 24h change, volume, and market cap for your entire watchlist in one request.
Top 10 gainers, losers, and volume leaders from the top 100 coins — pre-ranked and ready to display.
Automatic alerts when any coin in your watchlist moves more than 5% in 24 hours. History stored and queryable.
Simple Bearer token authentication. Register with just an email — no OAuth dance, no credit card to start.
Pure stdlib. No pip install. No Docker. Runs anywhere Python 3.10+ is available — even inside your existing service.
Market data cached locally. Your requests never hit rate limits — even if CoinGecko is having a bad day.
Base URL: https://trades-quote.com
# 1. Register and get your API key POST /api/register { "email": "[email protected]", "watchlist": ["bitcoin", "ethereum", "solana"], "plan": "free" } → { "api_key": "tq_abc123...", "user_id": 42 } # 2. Get live quotes for your watchlist GET /api/quotes Authorization: Bearer tq_abc123... → { "coins": { "bitcoin": { "usd": 67420, "usd_24h_change": 2.4 } } } # 3. Get pre-ranked market summary GET /api/market-summary → { "top_gainers": [...], "top_losers": [...], "volume_leaders": [...] } # 4. Check your alert history GET /api/alerts/42 Authorization: Bearer tq_abc123... → { "alerts": [{ "coin_id": "solana", "direction": "up", "change_pct": 7.3 }] } # 5. Update your watchlist anytime POST /api/watchlist Authorization: Bearer tq_abc123... { "watchlist": ["bitcoin", "avalanche-2", "chainlink"] }
No usage-based billing surprises. Flat monthly pricing, cancel any time.
No credit card. No OAuth. Just an email.