Token Price Change
Retrieve price change data for one or more cryptocurrency tokens. Returns a simplified view focused on price changes across different timeframes.
Features:
Focused on price change metrics only
Multiple timeframe support (1h, 24h, 7d, 30d, 60d, 90d)
Optimized for charting and trend analysis
Same caching and data sources as
/token/quote
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 price change data
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/price-change?slugs=text HTTP/1.1
Host: cell0.hyperbola.network
x-api-key: YOUR_API_KEY
Accept: */*
[
{
"slug": "bitcoin",
"price": 45000.5,
"percentageChange1h": 0.15,
"percentageChange24h": 2.34,
"percentageChange7d": -1.45,
"percentageChange30d": 12.67,
"percentageChange60d": 8.92,
"percentageChange90d": 15.43
}
]
Last updated