Coinlore
Keyless crypto prices, market cap and rankings
Returns live ticker data for thousands of cryptocurrencies, including USD price, market cap, supply figures and percent changes over 1h/24h/7d. Query the full ranked list or specific coins by ID. No key and open CORS.
GET https://api.coinlore.net/api/tickers/?start=0&limit=2
{
"data": [
{
"id": "90",
"symbol": "BTC",
"name": "Bitcoin",
"rank": 1,
"price_usd": "62670.92",
"percent_change_24h": "0.29",
"market_cap_usd": "1251591657512.90"
}
]
}curl "https://api.coinlore.net/api/tickers/?start=0&limit=2"const res = await fetch("https://api.coinlore.net/api/tickers/?start=0&limit=2");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.coinlore.net/api/tickers/?start=0&limit=2")
print(res.json())/tickers/?start=0&limit=2PROBEDKeyless crypto prices, market cap and rankings
/tickers/?limit=5Tickers — documented GET route.
/tickers/?page=1Tickers — documented GET route.
/api/global/Global — documented GET route.
/api/assets/Assets — documented GET route.
/api/tickers/Tickers — 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.
Coinlore: common questions
Is Coinlore free to use?
Yes — Coinlore is a free crypto & web3 API. Free tier: Free, no key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Coinlore need an API key?
No — Coinlore needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Coinlore from the browser?
Yes — Coinlore 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 Coinlore up right now?
As of our last scheduled check, Coinlore is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.