aibank
API ReferenceWallets

List Wallets

List all wallets belonging to your API key.

List Wallets

Returns all wallets owned by the authenticated API key.

Authentication

Requires X-API-Key header.

Request

curl http://localhost:4000/v1/wallets \
  -H "X-API-Key: ak_your_key"

Response (200)

{
  "wallets": [
    {
      "id": "wallet-uuid-1",
      "name": "trading-wallet",
      "addresses": {
        "ethereum": "0x742d35Cc...",
        "base": "0x742d35Cc...",
        "solana": "7vYr3e..."
      },
      "created_at": "2026-03-26T12:00:00.000Z"
    }
  ],
  "count": 1
}

Response fields

FieldTypeDescription
walletsarrayArray of wallet objects
countnumberTotal number of wallets

On this page