Trending Pools endpoint, /networks/{network}/trending_pools is now available to fetch a list of pools that are trending as seen on GeckoTerminal based on web visits and on-chain activities.
Added new endpoint to search for pools /search/pools based on keywords passed into query.
We've included a new field "whitepaper" under "links" section for /coins/{id} endpoint
Example of responses:
{
"id": "bitcoin",
......
"links": {
"homepage": [],
"whitepaper": "https://bitcoin.org/bitcoin.pdf", π
"blockchain_site": [],
"official_forum_url": [],
"chat_url": [],
"announcement_url": [],
"twitter_screen_name": "bitcoin",
"facebook_username": "bitcoins",
"bitcointalk_thread_identifier": null,
"telegram_channel_identifier": "",
"subreddit_url": "https://www.reddit.com/r/Bitcoin/",
"repos_url": {}
},
.......
}
The following data is now deprecated for /coins/{id} endpoint:
- coingecko_rank
- coingecko_score
- developer_score
- community_score
- liquidity_score
- public_interest_score
- public_interest_stats
- alexa_rank
- bing_matches
We've introduced Historical Total Supply data to Enterprise plan subscribers via these 2 exclusive endpoints:
- /coins/{id}/total_supply_chart : get historical total supply of a coin, by number of days away from now.
- /coins/{id}/total_supply_chart/range : get historical total supply of a coin, within a range of timestamp.
We've expanded the capabilities of the /search/trending endpoint.
It now supports up to 15 trending coins, a significant increase from the previous limit of 7.
Pool data now returns transaction stats for the last 1 hour. Unique buyers and sellers in the last 1 hour and 24 hours are now returned in the response
The web_slug data is now available in the following endpoints.
This addition allows users to accurately link to a CoinGecko coin page using www.coingecko.com/en/{web_slug}.
Example of responses:
{
"id": "bitcoin",
"symbol": "btc",
"name": "Bitcoin",
"web_slug": "bitcoin", π
......
"tickers": [...]
}
For the /asset_platforms endpoint, we've introduced the native_coin_id data. This enables users to obtain the coin ID of different blockchain networks or asset platforms that may not have a contract address to look up
Example of responses:
{
"id": "polygon-pos",
"chain_identifier": 137,
"name": "Polygon POS",
"shortname": "MATIC",
"native_coin_id": "matic-network" π
},
Inspired by CoinGecko API most popular endpoint, we have launched the /simple/networks/{network}/token_price/{addresses}, simple endpoint. Simply pass in addresses of any tokens on supported blockchain and get price data for it
You can now get the latest 300 trades in the past 24 hours of a given pool from this endpoint /networks/{network}/pools/{pool_address}/trades. You may optionally filter by trade size as well. You can now build your own telegram bot alert!