Use this workflow when you already know the assets you care about and want their latest market data. If you want a ranked market list instead, use Get top coins by market cap.
Best starting endpoint
Start with GET /v3/cryptocurrency/quotes/latest.
Use it when you already know the asset id, slug, or symbol. For production workflows, id is the safest choice.
Minimal example
This example fetches the latest USD quotes for Bitcoin and Ethereum by CoinMarketCap ID.
Code
What you get back
data: an array of asset recordsquote.USD.price: the latest pricequote.USD.market_cap: the latest market capquote.USD.volume_24h: 24h volumequote.USD.percent_change_*: recent performance windows
Use this when
- You are building a watchlist or portfolio view
- You need the latest price for a known set of assets
- You want to compare a few assets side by side
Common mistakes
- Using
listings/latestwhen you already know the exact assets you need - Using
symbolin production when you should use stable CoinMarketCapid - Calling the API directly from the browser instead of your backend
Good next steps
- Use /v1/cryptocurrency/map if you need to look up stable IDs first
- Use /v2/cryptocurrency/info if you also need metadata such as logos and links
- Use Get top coins by market cap if you need a ranked market list instead of known assets
- Use API response format, IDs, and timestamps if you want to understand IDs and response structure