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

We've added new /global/market_cap_chart endpoint for Paid Plan Subscribers. This allows users to query historical market cap chart data.

We've introduced a filter param, currently limited to "nft," to the /asset_platforms endpoint. This allows users to obtain a comprehensive list of NFT blockchain networks supported by CoinGecko.

A new parameter, "precision," has been added to the /simple/price endpoint. This enhancement allows users to customize the returned coin price based on the specified number of decimals or retrieve it with full decimal precision.