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
API Key Authentication
All endpoints require a valid API key in the x-api-key header.
How to get your API key:
- Contact the Hyperbola team at support@hyperbola.network
- Provide your use case and expected API usage
- Receive your unique API key via secure email
Using with Scalar/GitBook:
- Click the "Test Request" button on any endpoint
- In the Authentication section, enter your API key
- The key will be automatically added to all requests
Example:
x-api-key: your-actual-api-key-here
Security:
- Keep your API key secure and never expose it in client-side code
- API keys are rate-limited and monitored for abuse
- Contact support immediately if you suspect your key is compromised
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-]+)*$List of token price change data
Bad request - invalid parameters
Authentication required or invalid API key
Rate limit exceeded
Internal server error
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