API Documentation
⌘K
API Key
Get free key GET
/api/1/crypto-extended/intraday/{symbol}Crypto Intraday Quotes API
Returns 7-day rolling intraday price ticks for a cryptocurrency. Includes price, volume, market cap, and dominance at each tick.
Parameters
2hoursnumberLimit to last N hours (default 24, max 168 = 7 days)
symbolstringrequiredCrypto identifier (e.g. BTC, ETH)
Responses
Was this helpful?
Request
curl -X GET \
'https://api.eulerpool.com/api/1/crypto-extended/intraday/BTC' \
-H 'Accept: application/json'200 Response
[
{
"timestamp": 1705276800000,
"price": 42300,
"volume": 0,
"market_cap": 0,
"dominance": 0
}
]