Data
Trending crypto coins API
Pull CoinGecko's trending-search feed (keyless) and normalize it into a flat ranked list: each trending coin's name, symbol, market-cap rank, USD price, 24h change, and market cap. The value-add is normalizing the nested trending payload into an agent-friendly table. Answers 'what crypto is trending right now', 'top trending coins', 'what is hot in crypto', 'trending coin prices'.
Price$0.01per request
MethodPOST
Route/v1/data/crypto-trending
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
datacryptotrendingcoingeckocoinshotrankingprice
API URL
Integration docshttps://x402.hexl.dev/v1/data/crypto-trendingExample request
{}Example response
{
"count": 2,
"coins": [
{
"position": 1,
"id": "pepe",
"name": "Pepe",
"symbol": "PEPE",
"marketCapRank": 30,
"priceUsd": 0.0000089,
"change24hPct": 12.3,
"marketCap": "$3.7B"
},
{
"position": 2,
"id": "solana",
"name": "Solana",
"symbol": "SOL",
"marketCapRank": 5,
"priceUsd": 150,
"change24hPct": -1.2,
"marketCap": "$70B"
}
]
}Input schema
{
"type": "object",
"additionalProperties": false,
"properties": {}
}Output schema
{
"type": "object",
"additionalProperties": true
}