Aller au contenu
GET /v1/network

Protocol economics — bonded RUNE, security bond, reserve, APY

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/thorchain-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/thorchain-api/v1/network" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/thorchain-api/v1/network", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/thorchain-api/v1/network");
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/thorchain-api/v1/network",
    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": "THORChain",
        "bonding_apy": null,
        "liquidity_apy": null,
        "gas_spent_rune": 1792825.27796318,
        "bond_reward_rune": 160097.02077834,
        "settlement_asset": "RUNE",
        "total_bond_units": 22511348,
        "vaults_migrating": false,
        "gas_withheld_rune": 2311803.86614277,
        "total_reserve_rune": 15835760.40018784,
        "available_pools_rune": 59171452.58830434,
        "vaults_liquidity_rune": 81563517.34048808,
        "effective_security_bond_rune": 55738050.01383084
    },
    "meta": {
        "timestamp": "2026-06-10T13:59:43.158Z",
        "request_id": "1c25293e-4ad8-4a95-a3aa-efa32928201d"
    },
    "status": "ok",
    "message": "Network state retrieved successfully",
    "success": true
}