Aller au contenu
GET /v1/meta

Provider metadata & endpoint guide

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/coinlore-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

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