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!
You can now fetch token information such as name, image, social links, and description via these endpoints:
- To fetch information of tokens inside a pool, use /networks/{network}/pools/{pool_address}/info
- To fetch information of a specific token use /networks/{network}/tokens/{address}/info
- If you like to get token information of the most recently updated tokens, use /tokens/info_recently_updated
Pool response data now returns price in the base and quote token of the pool base_token_price_quote_token and quote_token_price_base_token for your convenience without the need to do additional calculation to derive these values
Added new endpoints to allow querying multiple pools and tokens in a single API call. /networks/{network}/pools/multi/{addresses} and /networks/{network}/tokens/multi/{addresses}
- More data added to the Pool response such as FDV, market cap (from CoinGecko if available), price change percentage, volume, number of buy/sell transactions
- More data added when querying for token such as FDV, volume, market cap, and the top 3 pools
The uses of 'precision' parameter allows to specify price data in full or 0-18 decimals, and previously was only made available for /simple/price and /simple/token_price/{id} endpoints.
This parameter is now supported for more endpoints as listed below:
We've made enhancements to the /search/trending and /coins/{asset_platform_id}/contract/{contract_address} endpoints:
- Top 5 trending NFT data (based on high trading volume in the last 24 hours) is now included in the /search/trending endpoint
- Near Protocol contract address (e.g. wrap.near) is now supported for /coins/{asset_platform_id}/contract/{contract_address} endpoint