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