Back to APIs
CoinGecko
Free access to real-time and historical cryptocurrency market data, including prices, volume, and market cap.
Base URL
https://api.coingecko.com/api/v3cryptopricesmarket capDeFihistorical
Endpoints
GET
/simple/priceGet current price of any cryptocurrency.
const response = await fetch("https://api.coingecko.com/api/v3/simple/price?ids=bitcoin,ethereum&vs_currencies=usd", {
method: "GET",
headers: {
"Content-Type": "application/json"
}
});
const data = await response.json();
console.log(data);Response Preview
{
"bitcoin": { "usd": 67240.15 },
"ethereum": { "usd": 3512.40 }
}