- Token metadata such as name, symbol, and CoinGecko ID are now returned in the responses for pools endpoints. Users will need to pass in this attribute include=base_token, quote_token
- CoinGecko asset platform ID added to the response for /networks endpoint
The /coins/{id}/ohlc endpoint now supports the "interval=daily" parameter for Paid Plan Subscribers
Users can use this parameter to retrieve OHLC (Open/High/Low/Close) data on a daily interval for up to 180 days of date range.
We've added 'watchlist_portfolio_users' field to /coins/{id} endpoint responses.
This refers to number of users who added the coin into a watchlist or portfolio.
Example of responses:
{
"id": "bitcoin",
......
"watchlist_portfolio_users": 1449601, π
"market_cap_rank": 1,
......
"tickers": []
}
We've increased the rate limit of Public Plan from 10 calls per minute to 30 calls per minute
- base_token_native_currency and quote_token_native_currency added to the pools endpoint response. This allows you to obtain price in the network's native currency in addition to in USD
- reserve_in_usd added to the pools endpoint response. This returns the total liquidity/reserve of the pool in USD
- pool_created_at added to the pools endpoint response
Example of responses for /networks/{network}/pools/{address} :
{
"data": {
"id": "eth_0xeb2eae8a9912a09cb0f13bfafd5ad56cd263bb3f",
"type": "pool",
"attributes": {
"base_token_price_usd": "0.0000186523882966482",
"base_token_price_native_currency": "0.00000000647822280242372", π
"quote_token_price_usd": "2881.71870575097",
"quote_token_price_native_currency": "1.0", π
"base_token_price_quote_token": "0.000000006478222802",
"quote_token_price_base_token": "154363323",
"address": "0xeb2eae8a9912a09cb0f13bfafd5ad56cd263bb3f",
"name": "DGX-1 / WETH",
"pool_created_at": "2024-02-18T08:10:59Z", π
"fdv_usd": "784687",
"market_cap_usd": null,
"price_change_percentage": {
"h1": "34.67",
"h24": "8406.81"
},
"transactions": {},
"volume_usd": {},
"reserve_in_usd": "110214.6247" π
},
"relationships": {}
}
}
- /networks/{network}/new_pools endpoint added to query new pools discovered for a network
- /networks/new_pools endpoint added to query new pools discovered across all networks
We've added "symbol" field to these NFT endpoints responses:
Example of responses:
{
"id": "pudgy-penguins",
"contract_address": "0xBd3531dA5CF5857e7CfAA92426877b022e612cf8",
"asset_platform_id": "ethereum",
"name": "Pudgy Penguins",
"symbol": "PPG", π
....
},
We've added "links" field (e.g. homepage, twitter, discord) to these NFT endpoints responses:
Example of responses:
{
"id": "pudgy-penguins",
"contract_address": "0xBd3531dA5CF5857e7CfAA92426877b022e612cf8",
.......
"links": {
"homepage": "https://www.pudgypenguins.com/", π
"twitter": "https://twitter.com/pudgypenguins",π
"discord": "https://discord.gg/pudgypenguins" π
},
.......
}
We've added /coins/top_gainers_losers endpoint exclusively for Paid Plan Subscribers.
Users can now get the top 30 coins with largest price gain and loss by a specific time duration with this endpoint.
/networks/{network}/pools/{pool_address}/ohlcv/{timeframe} now returns more granularity day,
hour
, minute
and multiple aggregates
We've made some updates to the /coins/categories and /simple/token_price/{id} endpoints:
- Market cap and volume data for 'ecosystem' categories in the /coins/categories endpoint will now return 'null' until further notice. The CoinGecko team is actively working on improvements to provide more accurate data. If you have any feedback or suggestions, please reach out via [email protected].
- Previously, the /simple/token_price/{id} endpoint was unable to return data for some Solana coins. This issue has been resolved, and users can now expect accurate data for Solana coins from this endpoint.