Aller au contenu
GET /v1/meta

Spec

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/cryptomarket-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/cryptomarket-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptomarket-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptomarket-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/cryptomarket-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": {
        "source": "CoinGecko public API (live)",
        "service": "cryptomarket-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/global": "Whole-market snapshot: total market cap, volume, BTC/ETH dominance, 24h change, active coins.",
            "GET /v1/trending": "The coins trending in search right now (rank, price, 24h change).",
            "GET /v1/treasuries": "Public companies holding Bitcoin/Ethereum (coin=bitcoin|ethereum, limit up to 100)."
        },
        "description": "Live whole-market crypto data from CoinGecko: the global market snapshot (total market cap and 24h volume, BTC/ETH market-cap dominance, 24h change, active coins and markets); the trending coins people are searching for most right now with rank, price and 24h change; and the public companies holding Bitcoin or Ethereum on their balance sheets, ranked by holdings with USD value and totals. Live, no key, nothing stored. Distinct from single-coin price, sector and TVL APIs — this is the whole market, what's trending, and who's holding.",
        "upstream_status": null
    },
    "meta": {
        "timestamp": "2026-06-09T11:39:36.063Z",
        "request_id": "1d837e97-d425-46cb-a8d2-5b8497cf621b"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}