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.

We have added a new field, "details_platform," to the /coins/{id} and /coins/{asset_platform_id}/contract/{contract_address} endpoints responses.

The field contains information about the asset platform, specifically the "decimal_places," providing details on the decimal places associated with the asset platform.

Example of responses:

{
  "id": "arbitrum",
  "symbol": "arb",
  "name": "Arbitrum",
  "web_slug": "arbitrum",
  "asset_platform_id": "arbitrum-one",
  "platforms": {},
  "detail_platforms": {
      "arbitrum-one": { πŸ‘ˆ
      	"decimal_place": 18, πŸ‘ˆ
      	"contract_address": "0x912ce59144191c1204e64559fe8253a0e49e6548" πŸ‘ˆ
      },
      ......
  }, 
   ......
}

We've enhanced the /exchanges/{id} endpoint by adding two new fields, public_notice and alert_notice.

These additions provide information on public notices and alerts associated with the specified exchange.

Example of responses:

{
  "name": "Uniswap V3 (Ethereum)",
  ......
  "centralized": false,
  "public_notice": "This page refers to Uniswap V3. This is an alpha release of the exchange tracker, we will continue to improve the stats here specifically for the new approach introduced by the V3 protocol. For Uniswap V2, please refer to https://www.coingecko.com/en/exchanges/uniswap-v2-ethereum", πŸ‘ˆ
  "alert_notice": "", πŸ‘ˆ
	......
  "status_updates": []
}

We've implemented a category filter, currently limited to "decentralized_finance_defi," for the /coins/markets endpoint.

This addition allows users to filter and retrieve market data specifically related to decentralized finance (DeFi) within the endpoint.