Token Price Change

Get token price changes

get

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
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:

  1. Contact the Hyperbola team at support@hyperbola.network
  2. Provide your use case and expected API usage
  3. 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: 1Required

Comma-separated list of token slugs to get quotes for.

Popular tokens: bitcoin, ethereum, solana, cardano, polkadot Limit: Maximum 10 tokens per request

Example: {"summary":"Single token","value":"bitcoin"}Pattern: ^[a-z0-9-]+(,[a-z0-9-]+)*$
Responses
200

List of token price change data

application/json
get
/token/quote/price-change
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