Naar de inhoud
GET /v1/inbound

Inbound vault address, router and gas rate per chain

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/thorchain-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}