CoinRanking
CoinRanking — free-tier JSON endpoint
CoinRanking offers a free API tier. We verified JSON on a sample GET (Cryptocurrency). Check provider docs for key requirements and limits.
GET https://api.coinranking.com/v2/coins
{
"status": "success",
"data": {
"stats": {
"total": 2133,
"totalCoins": 2102848,
"totalMarkets": 52704,
"totalExchanges": 183,
"totalMarketCap": "1105",
"total24hVolume": "36392766196"
},
"coins": [
{
"uuid": "Qwsogvtv82FCd",
"symbol": "BTC",
"name": "Bitcoin",
"color": "#f7931A",
"iconUrl": "https://cdn.coinranking.com/bOabBYkcX/bitcoin_btc.svg",
"marketCap": "1281662530785",
"price": "63914.95032621191",
"listedAt": 1279324800
},
{
"uuid": "razxDUgYGNAdQ",
"symbol": "ETH",
"name": "Ethereum",
"color": "#3C3C3D",
"iconUrl": "https://cdn.coinranking.com/rk4RKHOuW/eth.svg",
"marketCap": "217077918903",
"price": "1798.7415049725882",
"listedAt": 1438905600
}
]
},
"pagination": {
"limit": 50,
"hasNextPage": true,
"hasPreviousPage": false,
"nextCursor": "eyJiIjpbMV0sInYiOjEzNzU2MzM1ODMsInIiOjEzNzU2MzM1ODMsInQiOjYzMTAxLCJvIjoibWFya2V0Q2FwIiwiZCI6ImRlc2MiLCJjIjoibmV4dCIsInAiOjUwfQ",
"previousCursor": null
}
}curl "https://api.coinranking.com/v2/coins"const res = await fetch("https://api.coinranking.com/v2/coins");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.coinranking.com/v2/coins")
print(res.json())/v2/coinsPROBEDCoinRanking — free-tier JSON endpoint
/v2V2 — documented GET route.
/v2/1V2 details by ID (example: 1).
/v2?limit=10V2 — documented GET route.
/v2/search?q=testSearch by query parameters.
/v2/V2 — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
CoinRanking: common questions
Is CoinRanking free to use?
Yes — CoinRanking is a free crypto & web3 API. Free tier: Free tier — API key may be required for production. Whether the free tier allows commercial use is unclear — check the provider docs.
Does CoinRanking need an API key?
Yes — CoinRanking needs a free API key, which you pass on each request. Rate limits: 5 req/window · 4 remaining · resets 24.
Can I call CoinRanking from the browser?
Yes — CoinRanking returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is CoinRanking up right now?
As of our last scheduled check, CoinRanking is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.