Ir al contenido
GET /v1/tickers

Paginated ticker list

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/coinlore-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
…