Aller au contenu
GET /v1/inbound

Inbound vault address, router and gas rate per chain

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/thorchain-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

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