Single crypto token stats
GET /v1/quote/crypto/:symbol — Market cap, FDV, 24h volume (USD), 24h % change, name, logo, and chain for one crypto symbol. Sourced from Minara `searc
GET /v1/quote/crypto/:symbol
Market cap, FDV, 24h volume (USD), 24h % change, name, logo, and chain for one crypto symbol. Sourced from Minara searchTokens by picking the first row whose symbol matches exactly (case-insensitive). Used by the markets-detail Crypto header. Returns supported: false when Minara has no exact-match row for the symbol.
| Method | GET |
| Path | /v1/quote/crypto/:symbol |
| Auth | Authorization: Bearer <token> required when GATEWAY_AUTH_TOKEN is set |
| Category | market |
Response body
{ "supported": true, "symbol": "BTC", "name": "Bitcoin", "chain": "btc", "logo_url": "https://...", "price": 78000.12, "price_change_24h_pct": 1.23, "volume_24h": 32500000000, "market_cap": 1540000000000, "fdv": 1640000000000 }