Skip to content
GET /v1/network

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

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/thorchain-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "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
}