CoinMarketCap Listings API
Get the current top cryptocurrencies from CoinMarketCap (rank, price, market cap, volume, and 24h change) as normalized JSON.
Try it
Make your first request
{
"data": {
"items": [
{
"ath": 12.5,
"atl": 12.5,
"circulatingSupply": 12.5,
"high24h": 12.5,
"id": "a1b2c3d4",
"lastUpdated": "2024-01-15T09:30:00Z",
"low24h": 12.5,
"marketCap": 12.5,
"name": "Example title",
"price": 19.99,
"slug": "alex_rivera",
"symbol": "example",
"totalSupply": 12500,
"volume24h": 12500
}
]
},
"found": true
}interface CoinmarketcapListingsResponse {
data: {
items: {
ath?: number;
atl?: number;
circulatingSupply?: number;
high24h?: number;
id: string;
lastUpdated?: string;
low24h?: number;
marketCap?: number;
name: string;
price?: number;
slug?: string;
symbol: string;
totalSupply?: number;
volume24h?: number;
}[];
} | null;
found: boolean;
}Full parameter and response reference - every field, type, and example for this endpoint.
Reference
Request, response, and price
Last verified 2026-09-16 · uptime and latency measured over 30dcurl -X POST https://api.getanyapi.com/v1/run/coinmarketcap.listings \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"limit":5}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| limit | integer | 5Maximum number of results to return (1-25, default 25). You are billed per result returned, so a lower limit costs less. |
| Response | ||
| data | object | |
| data.items | object[] | Cryptocurrency listing records: rank, name, symbol, price, market cap, trading volume, and 24h price change. Populated whenever the provider has data for the entity. |
| data.items[].ath | number | All-time high price in USD. |
| data.items[].atl | number | All-time low price in USD. |
| data.items[].circulatingSupply | number | Circulating supply (coin count). |
| data.items[].high24h | number | 24h high price in USD. |
| data.items[].id | string | CoinMarketCap identifier. Populated whenever the provider has data for the entity. |
| data.items[].lastUpdated | string | Populated whenever the provider has data for the entity. |
| data.items[].low24h | number | 24h low price in USD. |
| data.items[].marketCap | number | Market capitalization in USD. |
| data.items[].name | string | Populated whenever the provider has data for the entity. |
| data.items[].price | number | Latest price in USD. |
| data.items[].slug | string | Populated whenever the provider has data for the entity. |
| data.items[].symbol | string | Populated whenever the provider has data for the entity. |
| data.items[].totalSupply | number | Total supply (coin count). |
| data.items[].volume24h | number | 24h trading volume in USD. |
| found | boolean | |
| Price | ||
| Price per request (ceiling) | USD | $0.0495 |
| Price /1k results | USD | $1.98 |
FAQ
About the CoinMarketCap Listings API
The AnyAPI CoinMarketCap Listings API returns CoinMarketCap listings data as normalized JSON from one POST call to /v1/run/coinmarketcap.listings. Get the current top cryptocurrencies from CoinMarketCap (rank, price, market cap, volume, and 24h change) as normalized JSON. AnyAPI returns one normalized schema whichever source serves it. It costs $1.98 per 1,000 results, and never more than $0.0495 for a single request, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of CoinMarketCap listings calls through AnyAPI succeeded, with a median response time of 13.2 seconds across 3 measured calls.