Skip to main content
GET
/
api
/
public
/
v1
/
wallet
Get AutoBoy wallet
curl --request GET \
  --url https://thefirm.biz/api/public/v1/wallet \
  --header 'Authorization: Bearer <token>'
{
  "autoboyWalletAddress": "0x1234567890123456789012345678901234567890",
  "balances": [
    {
      "address": "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE",
      "symbol": "ETH",
      "name": "Ether",
      "decimals": 18,
      "balance": "1500000000000000000"
    },
    {
      "address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "symbol": "USDC",
      "name": "USD Coin",
      "decimals": 6,
      "balance": "2500000"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key issued via POST /api/public/v1/api-keys.

Response

The AutoBoy wallet balances.

autoboyWalletAddress
string
required
Example:

"0x1234567890123456789012345678901234567890"

balances
object[]
required

ERC-20 tokens and native ETH held by the autoboy smart wallet on Base. Native ETH, when held, is the first entry; an empty wallet returns an empty array.