Token Price Change
Authorizations
x-api-keystringRequired
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
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
Price and percentage change information across multiple timeframes
pricenumber · floatRequiredExample:
Current price in USD
45000.5percentageChange1hnumber · floatRequiredExample:
1-hour price change percentage
0.15percentageChange24hnumber · floatRequiredExample:
24-hour price change percentage
2.34percentageChange7dnumber · floatRequiredExample:
7-day price change percentage
-1.45percentageChange30dnumber · floatRequiredExample:
30-day price change percentage
12.67percentageChange60dnumber · floatRequiredExample:
60-day price change percentage
8.92percentageChange90dnumber · floatRequiredExample:
90-day price change percentage
15.43400
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
/token/quote/price-changeLast updated