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

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 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.