/v1/meta
Provider metadata & endpoint guide
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/coinlore-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coinlore-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coinlore-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "Coins accepted by ticker (BTC) or CoinLore numeric id (90); the top-100 symbol map resolves common tickers, pass a numeric id for long-tail coins.",
"source": "CoinLore public REST (api.coinlore.net/api), keyless",
"examples": {
"coin": "/v1/coin?symbol=BTC",
"global": "/v1/global",
"markets": "/v1/markets?symbol=ETH",
"tickers": "/v1/tickers?start=0&limit=25",
"exchanges": "/v1/exchanges?limit=20"
},
"provider": "CoinLore",
"endpoints": {
"/v1/coin": "single-coin ticker by symbol or id (symbol=BTC)",
"/v1/global": "global market snapshot (cap, volume, BTC/ETH dominance, coin & market counts)",
"/v1/markets": "markets/exchanges a coin trades on with pair prices & volumes (symbol, limit)",
"/v1/tickers": "paginated ticker list with price, market cap, volume & changes (start, limit)",
"/v1/exchanges": "ranked exchange list, or one exchange's pairs (id optional, limit)"
},
"cache_ttl_ms": 30000
},
"meta": {
"timestamp": "2026-06-15T11:15:44.921Z",
"request_id": "3a5be9c7-86e6-4a44-89ad-77e6e20a27be"
},
"status": "ok",
"message": "Meta",
"success": true
}