KEYLESS API
Call live CoinMarketCap data right now: no account, no API key, no email address. The Keyless API gives you 36 supported endpoints across the Standard API and DEX API, available immediately.

Skip the signup. Skip the key. Make real requests against live CoinMarketCap data with zero setup.
# No key, no headers, no account — real response
curl -G "https://pro-api.coinmarketcap.com/public-api/v1/cryptocurrency/listings/latest" \
--data-urlencode "start=1" \
--data-urlencode "limit=10" \
--data-urlencode "convert=USD" \
-H "Accept: application/json"All keyless requests start with a single path prefix. No headers, no authentication.
The /public-api path signals a keyless call. Supported routes accept GET requests without the X-CMC_PRO_API_KEY header.
{
"status": {
"timestamp": "2026-05-26T09:05:03.520Z",
"error_message": null,
"elapsed": 31,
"credit_count": 1
},
"data": { /* endpoint-specific payload */ }
}Keyless endpoints return the same standard JSON envelope as authenticated Pro API endpoints. Build once, your parsing logic carries directly into authenticated access.
Same status object, data shapes, and error codes as the Pro API — build once, upgrade with zero rework.
A useful API test starts with responses that could power an actual feature. These three requests cover ranked assets, market-wide context, and a CMC-native indicator.
Ranked cryptocurrency market data: fields for price tables, discovery screens, and portfolio experiments.
Total market cap, 24-hour volume, Bitcoin dominance, Ethereum dominance, and additional market-wide values.
A CoinMarketCap-native market sentiment signal: latest index value, classification, and update time.
A curated subset of Standard API and DEX API routes: ranked assets, market-wide indicators, index data, DEX pairs, liquidity, swap activity, holders, and on-chain chart data.
Supported keyless routes cover enough real product territory to validate a full working prototype, from rankings and market overviews to sentiment displays, token discovery, and on-chain data interfaces.
Call listings or simple price through the Keyless Public API path and display current market data (symbols, prices, and market cap for the top coins) with no authentication.
Store selected CoinMarketCap asset IDs and retrieve latest prices for those assets. Stable CMC IDs don’t depend on ticker symbols alone, ideal for watchlists and portfolios.
Combine prices with the CMC Crypto Fear and Greed Index to show whether conditions are fearful, neutral, or greedy. Also test Altcoin Season Index, CMC100, and CMC20 routes.
Test selected DEX routes for token, pair, pool, liquidity, security, holder, and K-line workflows before building a full authenticated integration, great for early DeFi dashboards.
When you’re ready for higher limits and the full catalog, the switch is a few small changes — not a rewrite.
curl https://pro-api.coinmarketcap.com/public-api/v1/cryptocurrency/listings/latestcurl https://pro-api.coinmarketcap.com/v1/cryptocurrency/listings/latest \
-H "X-CMC_PRO_API_KEY: <YOUR_KEY>"/public-api path. Supported routes accept GET requests without the X-CMC_PRO_API_KEY header, so you can inspect real CoinMarketCap response formats before setting up credentials.https://pro-api.coinmarketcap.com/public-apipro.coinmarketcap.com, remove /public-api from the URL and add the X-CMC_PRO_API_KEY header.mcp.coinmarketcap.com/mcpREADY TO BUILD?
Your first live response to a supported endpoint is one curl away. No signup needed.