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
| Name | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
exchange | string | no | Specifes exchange | "..." | |
asset | string | yes | Specifies asset | "..." |
Example invocation
JSON-RPC tools/call payload:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "wallet_status",
"arguments": {
"asset": "..."
}
}
}