> For the complete documentation index, see [llms.txt](https://coingecko-api.gitbook.io/coingecko-api-guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://coingecko-api.gitbook.io/coingecko-api-guide/getting-started/10-min-tutorial-guide/3-get-exchanges-and-nft-data.md).

# #3: Get Exchanges & NFT Data

Too simple? Let’s get into something slightly more advance: Exchanges & NFT

Exchange and NFT data work very similarly as Coin data, which you already mastered them in tutorial [#1](/coingecko-api-guide/getting-started/10-min-tutorial-guide/1-get-data-by-id-or-address.md) and [#2](/coingecko-api-guide/getting-started/10-min-tutorial-guide/2-get-historical-data.md).

1. First, get the id (coin, exchange or NFT) from /list endpoint
2. Then use the id to query latest market data or historical data

<table data-header-hidden><thead><tr><th width="246"></th><th width="140"></th><th width="110"></th><th width="120"></th><th></th></tr></thead><tbody><tr><td><strong>TYPE</strong></td><td><strong>Coins</strong></td><td><strong>NFT</strong></td><td><strong>Exchanges</strong></td><td><strong>Derivatives</strong></td></tr><tr><td><strong>To get full list of ids</strong></td><td>/coins/list</td><td>/nfts/list</td><td>/exchanges/list</td><td>/derivatives/exchanges/list</td></tr><tr><td><strong>To get latest market data</strong> <br><br>- <strong>Coins</strong>: price, volume, metadata, image, price change %,.. <br><br><strong>- Exchange</strong>: volume in BTC, image,.. - NFT: floor price, volume, metadata, image,..</td><td>/coins/{id}</td><td>/nfts/{id}</td><td>/exchanges/{id}</td><td>/derivatives/exchanges/{id}</td></tr><tr><td><strong>Historical data</strong></td><td>/coins/{id}/market_chart</td><td>/nfts/market_chart</td><td>/exchanges/{id}/volume_chart</td><td>/exchanges/{id}/volume_chart</td></tr></tbody></table>

^See the similarities here? 😏

Try to look for exchanges and NFT endpoints on <https://www.coingecko.com/en/api/documentation> and try them out.

{% hint style="success" %}
Now that you've mastered all the basics, wanna learn more on the common use cases? \
Continue to read the next section!
{% endhint %}
