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/coinpaprika-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/coinpaprika-api/v1/global" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coinpaprika-api/v1/global", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coinpaprika-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/coinpaprika-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": {
        "last_updated": 1781522005,
        "market_cap_usd": 2356484862085,
        "volume_24h_usd": 116602877350,
        "market_cap_change_24h": 2.37,
        "volume_24h_change_24h": 57.12,
        "cryptocurrencies_number": 13147,
        "bitcoin_dominance_percent": 56.04
    },
    "meta": {
        "timestamp": "2026-06-15T11:15:45.295Z",
        "request_id": "6a39432b-fbef-4cb6-99d7-1376fb40c5c2"
    },
    "status": "ok",
    "message": "Global market retrieved successfully",
    "success": true
}