/v1/tickers
Paginated ticker list
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/coinlore-api/v1/tickers" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coinlore-api/v1/tickers", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coinlore-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/coinlore-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,
"limit": 25,
"start": 0,
"tickers": [
{
"id": "90",
"name": "Bitcoin",
"rank": 1,
"symbol": "BTC",
"price_btc": 1,
"price_usd": 65963.55,
"max_supply": 21000000,
"total_supply": 19970852,
"market_cap_usd": 1317348382886.9,
"volume_24h_usd": 22130849020.74018,
"percent_change_1h": 0.4,
"percent_change_7d": 4.95,
"circulating_supply": 19970852,
"percent_change_24h": 2.23
},
{
"id": "80",
"name": "Ethereum",
"rank": 2,
"symbol": "ETH",
"price_btc": 0.026376,
"price_usd": 1739.73,
"max_supply": null,
"total_supply": 122374665.71823,
"market_cap_usd": 212899049841.29,
"volume_24h_usd": 8842615436.703878,
"percent_change_1h": 1.06,
"percent_change_7d": 3.79,
"circulating_supply": 122374665.72,
"percent_change_24h": 3.93
},
{
"id": "518",
"name": "Tether",
"rank": 3,
"symbol": "USDT",
"price_btc": 1.5e-5,
"price_usd": 1.01,
"max_supply": null,
"total_supply": 195273257263.9662,
"market_cap_usd": 191943508133.4,
"volume_24h_usd": 44104932589.55608,
"percent_change_1h": -0.06,
"percent_change_7d": -0.86,
"circulating_supply": 189806317244.59,
"percent_change_24h": -0.51
},
{
"id": "2710",
"name": "Binance Coin",
"rank": 4,
"symbol": "BNB",
"price_btc": 0.009369,
"price_usd": 617.97,
"max_supply": 200000000,
"total_supply": 139186427.32,
"market_cap_usd": 86012434720.82,
"volume_24h_usd": 513493528.4666345,
"percent_change_1h": 0.52,
"percent_change_7d": 2.22,
"circulating_supply": 139186427.32,
"percent_change_24h": 0.99
},
{
"id": "33285",
"name": "USD Coin",
"rank": 5,
"symbol": "USDC",
"price_btc": 1.5e-5,
"price_usd": 1,
"max_supply": null,
"total_supply": 73979327162.301,
"market_cap_usd": 74006837761.92,
"volume_24h_usd": 4858038307.09107,
"percent_change_1h": 0,
"percent_change_7d": 0.03,
"circulatin
…