Token Quote
Retrieve current market quotes for one or more cryptocurrency tokens.
Data Sources & Caching:
Primary data cached in Redis for fast response times
Fallback to CoinMarketCap API for missing data
Cache TTL: 10 seconds for real-time accuracy
Supported Metrics:
Current price and market cap
Volume and volume changes
Price changes across multiple timeframes (1h, 24h, 7d, 30d, 60d, 90d)
Supply metrics (circulating, total, max)
Market dominance and ranking
Authorizations
Query parameters
slugsstring · min: 1RequiredExample:
Comma-separated list of token slugs to get quotes for.
Popular tokens: bitcoin, ethereum, solana, cardano, polkadot Limit: Maximum 10 tokens per request
{"summary":"Single token","value":"bitcoin"}
Pattern: ^[a-z0-9-]+(,[a-z0-9-]+)*$
Responses
200
List of token quotes
application/json
400
Bad request - invalid parameters
application/json
401
Authentication required or invalid API key
text/plain
429
Rate limit exceeded
application/json
500
Internal server error
application/json
get
GET /token/quote?slugs=text HTTP/1.1
Host: cell0.hyperbola.network
x-api-key: YOUR_API_KEY
Accept: */*
[
{
"slug": "bitcoin",
"price": 45000.5,
"volume24h": 25000000000,
"volumeChange24h": 5.25,
"percentageChange1h": 0.15,
"percentageChange24h": 2.34,
"percentageChange7d": -1.45,
"percentageChange30d": 12.67,
"percentageChange60d": 8.92,
"percentageChange90d": 15.43,
"marketCap": 850000000000,
"marketCapDominance": 42.5,
"fullyDilutedMarketCap": 945000000000,
"tvl": 0,
"maxSupply": 21000000,
"circulatingSupply": 19500000,
"totalSupply": 19500000,
"tvlRatio": 0,
"rank": 1,
"numMarketPairs": 10000
}
]
Last updated