/v1/network
Protocol economics — bonded RUNE, security bond, reserve, APY
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}