Developer API
REST API for markets, technical analysis and news — same data that powers this site. OpenAPI spec (JSON)
Authentication
Every request needs an API key in the Authorization header.
curl -H "Authorization: Bearer gcs_YOUR_KEY" \ "https://getcoinsight.com/api/v1/markets?limit=10"
Create and manage keys in your profile
Daily quotas
| Free | 100 requests/day |
| Basic | 1,000 requests/day |
| Pro | 10,000 requests/day |
| Premium | 100,000 requests/day |
Responses include X-RateLimit-Limit and X-RateLimit-Remaining headers. Over quota → HTTP 429.
Endpoints
GET /api/v1/markets?limit=100Top coins by market cap: price, market cap, volume, 1h/24h/7d change.
GET /api/v1/analysis?symbol=btc&interval=1hTechnical snapshot: price, trend, RSI/ADX/ATR, TA consensus rating, regime, composite score. Intervals: 1m–1M.
GET /api/v1/news?limit=30Aggregated crypto headlines (CoinDesk, Cointelegraph, Decrypt, The Block, Bitcoin Magazine).
All endpoints return JSON: { "data": … } on success, { "error": "code" } otherwise. CORS is open — callable from browsers and servers.