Aller au contenu
GET /v1/global

Global market snapshot

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/global" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coinlore-api/v1/global", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coinlore-api/v1/global");
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/global",
    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": {
        "coins_count": 14471,
        "active_markets": 31552,
        "market_cap_usd": 2259477600091.774,
        "volume_24h_usd": 96352942330.02693,
        "avg_change_percent": 0.27,
        "btc_dominance_percent": 58.3,
        "eth_dominance_percent": 9.42,
        "volume_change_percent": 49.05,
        "market_cap_change_percent": 2.69
    },
    "meta": {
        "timestamp": "2026-06-15T11:15:44.581Z",
        "request_id": "17b30e1e-efeb-4a65-b453-1043e8d20987"
    },
    "status": "ok",
    "message": "Global market retrieved successfully",
    "success": true
}