v4

latestOpenAPI 3.1.02026-08-01131465.2 KB
AutoBoy Wallet

Get AutoBoy wallet

Returns the AutoBoy smart wallet address associated with the API key, along with native ETH and the ERC-20 tokens it holds that AutoBoy has indexed, keyed by chain. Held tokens AutoBoy has not indexed are omitted. Each chain lists its spend currency first.

get/api/public/v1/wallet

Response

The AutoBoy wallet balances.

autoboyWalletAddressstring required

Example response

{
  "autoboyWalletAddress": "0x1234567890123456789012345678901234567890",
  "balances": {
    "base": [
      {
        "address": "0x1234567890123456789012345678901234567890",
        "symbol": "USDC",
        "name": "USD Coin",
        "decimals": 6,
        "balance": "2500000"
      }
    ],
    "robinhood": [
      {
        "address": "0x1234567890123456789012345678901234567890",
        "symbol": "USDC",
        "name": "USD Coin",
        "decimals": 6,
        "balance": "2500000"
      }
    ]
  }
}