/v1/inbound
Inbound vault address, router and gas rate per chain
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}