Aller au contenu
GET /v1/stats

Network stats

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/homeverse-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/homeverse-api/v1/stats" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/homeverse-api/v1/stats", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/homeverse-api/v1/stats");
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/homeverse-api/v1/stats",
    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": {
        "tvl_usd": null,
        "gas_prices": {
            "fast": null,
            "slow": null,
            "average": null
        },
        "total_blocks": 2268766,
        "coin_price_usd": null,
        "gas_used_today": "102144013",
        "market_cap_usd": 0,
        "total_addresses": "53924",
        "total_transactions": "2268774",
        "transactions_today": "2515",
        "network_utilization_percent": 0.4122556363636364
    },
    "meta": {
        "timestamp": "2026-06-08T18:25:35.590Z",
        "request_id": "bb4466ca-ba42-4bd8-bc70-42185298989b"
    },
    "status": "ok",
    "message": "Stats retrieved successfully",
    "success": true
}