/v1/tickers
Ranked ticker list with price, market cap & changes
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/coinpaprika-api/v1/tickers" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coinpaprika-api/v1/tickers", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coinpaprika-api/v1/tickers");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/coinpaprika-api/v1/tickers",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"count": 25,
"tickers": [
{
"id": "btc-bitcoin",
"name": "Bitcoin",
"rank": 1,
"symbol": "BTC",
"ath_date": "2025-10-06T19:00:40Z",
"ath_price": 126173.1777846797,
"price_usd": 65903.54325140818,
"max_supply": 21000000,
"last_updated": "2026-06-15T11:15:16Z",
"total_supply": 20043038,
"market_cap_usd": 1320907617143,
"volume_24h_usd": 24882719291.158867,
"percent_from_ath": -47.77,
"percent_change_1h": 0.33000001311302185,
"percent_change_7d": 4.769999980926514,
"percent_change_24h": 2.25,
"percent_change_30d": 0
},
{
"id": "eth-ethereum",
"name": "Ethereum",
"rank": 2,
"symbol": "ETH",
"ath_date": "2025-08-24T19:24:38Z",
"ath_price": 4946.229669645212,
"price_usd": 1739.8551168526421,
"max_supply": 0,
"last_updated": "2026-06-15T11:15:16Z",
"total_supply": 120232214,
"market_cap_usd": 209524342096,
"volume_24h_usd": 9019392563.314157,
"percent_from_ath": -64.84,
"percent_change_1h": 0.9200000166893005,
"percent_change_7d": 3.9800000190734863,
"percent_change_24h": 4.039999961853027,
"percent_change_30d": 0
},
{
"id": "usdt-tether",
"name": "Tether",
"rank": 3,
"symbol": "USDT",
"ath_date": "2015-02-25T17:04:00Z",
"ath_price": 1.21549,
"price_usd": 0.9992013517070578,
"max_supply": 0,
"last_updated": "2026-06-15T11:15:16Z",
"total_supply": 192016079439,
"market_cap_usd": 186400150653,
"volume_24h_usd": 45519478675.70583,
"percent_from_ath": -17.81,
"percent_change_1h": -0.009999999776482582,
"percent_change_7d": -0.03999999910593033,
"percent_change_24h": -0.009999999776482582,
"percent_change_30d": 0
},
{
"id": "bnb-binance-coin",
"name": "BNB",
"rank": 4,
"symbol": "BNB",
"ath_date": "2025-10-13T09:00:44Z",
"ath_price": 1370.9838437844724,
"price_usd": 617.2039333640097,
"max_supply": 200000000,
"last_updated": "2026-06-15T11:15:16Z",
"total_supply": 139184442,
"market_cap_usd": 85905185065,
"volume_24h_usd": 837680676.4657822,
…