본문으로 건너뛰기

wallet_status

Get wallet deposit/withdrawal status for an asset across exchanges. Shows whether deposits and withdrawals are enabled, along with network-specific status, fees, and messages. Critical for verifying arbitrage feasibility.

Usage hints:

  • Asset is required — check wallet_status_assets for available assets
  • Combine with premium to filter arbitrage opportunities by transferability
  • Check both deposit_state (on target exchange) and withdraw_state (on source exchange)
  • Network-specific withdrawal fees affect net arbitrage profit

REST endpoint

GET /api/v1/wallet-status — see REST reference.

Parameters

NameTypeRequiredDefaultDescriptionExample
exchangestringnoSpecifes exchange"..."
assetstringyesSpecifies asset"..."

Example invocation

JSON-RPC tools/call payload:

{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "wallet_status",
"arguments": {
"asset": "..."
}
}
}