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:

  • 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

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": []
}