/v1/inbound
Inbound vault address, router and gas rate per chain
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/thorchain-api/v1/inbound" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/thorchain-api/v1/inbound", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/thorchain-api/v1/inbound");
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/inbound",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 1,
"chains": [
{
"chain": "ETH",
"halted": true,
"router": "0xD37BbE5744D730a1d98d8DC97c42F0Ca46aD7146",
"address": "0x2a6589cbb9694c2c265ab5d90d2ed9a010dc2209",
"gas_rate": "15",
"outbound_fee": "1000",
"dust_threshold": "1000",
"gas_rate_units": "gwei",
"chain_trading_paused": true,
"global_trading_paused": true
}
],
"source": "THORChain"
},
"meta": {
"timestamp": "2026-06-10T13:59:43.456Z",
"request_id": "f296c72d-94af-416f-86a8-e4973fa6cf28"
},
"status": "ok",
"message": "Inbound addresses retrieved successfully",
"success": true
}