Crypto Global Market Data
curl --request GET \
--url https://pro-api.coingecko.com/api/v3/global \
--header 'x-cg-pro-api-key: <api-key>'{
"data": {
"active_cryptocurrencies": 17397,
"upcoming_icos": 0,
"ongoing_icos": 49,
"ended_icos": 3376,
"markets": 1476,
"total_market_cap": {
"btc": 34570737.199462704,
"eth": 1259418635.423994,
"usd": 2621040321355.0405
},
"total_volume": {
"btc": 1254779.1727158197,
"eth": 45711847.69194817,
"usd": 95133256404.37308
},
"market_cap_percentage": {
"btc": 57.9539332566265,
"eth": 9.58227145398409,
"usdt": 7.223241338072757
},
"market_cap_change_percentage_24h_usd": -1.6081983639177684,
"volume_change_percentage_24h_usd": 33.064521460740046,
"updated_at": 1779878351
}
}Crypto Global Market Data
To query cryptocurrency global data including active cryptocurrencies, markets, total crypto market cap and etc
GET
/
global
Crypto Global Market Data
curl --request GET \
--url https://pro-api.coingecko.com/api/v3/global \
--header 'x-cg-pro-api-key: <api-key>'{
"data": {
"active_cryptocurrencies": 17397,
"upcoming_icos": 0,
"ongoing_icos": 49,
"ended_icos": 3376,
"markets": 1476,
"total_market_cap": {
"btc": 34570737.199462704,
"eth": 1259418635.423994,
"usd": 2621040321355.0405
},
"total_volume": {
"btc": 1254779.1727158197,
"eth": 45711847.69194817,
"usd": 95133256404.37308
},
"market_cap_percentage": {
"btc": 57.9539332566265,
"eth": 9.58227145398409,
"usdt": 7.223241338072757
},
"market_cap_change_percentage_24h_usd": -1.6081983639177684,
"volume_change_percentage_24h_usd": 33.064521460740046,
"updated_at": 1779878351
}
}SDK Examples
const response = await client.global.get();
console.log(JSON.stringify(response, null, 2));
response = client.global_.get()
print(response.model_dump_json(indent=2))
Authorizations
headerAuthqueryAuth
Learn how to set up your API key
Response
200 - application/json
Cryptocurrency global market data
Hide child attributes
Hide child attributes
Number of active cryptocurrencies
Number of upcoming ICOs
Number of ongoing ICOs
Number of ended ICOs
Number of exchanges
Market cap change percentage in 24 hours in USD
Volume change percentage in 24 hours in USD
Last updated time in UNIX timestamp
Was this page helpful?

