Skip to main content
GET
/
wallets
/
{walletId}
Get wallet details
curl --request GET \
  --url https://api.zet.money/v1/wallets/{walletId} \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "data": {
    "id": "wal_01H8X3...",
    "externalUserId": "user_abc123",
    "address": "0x1234567890abcdef1234567890abcdef12345678",
    "chain": "base",
    "isDeployed": {
      "base": true,
      "bsc": false
    },
    "createdAt": "2023-11-07T05:31:56Z",
    "metadata": {}
  }
}

Authorizations

x-api-key
string
header
required

Your Zet API key. Contact zetdotmoney@gmail.com to obtain your keys.

Path Parameters

walletId
string
required

Response

Wallet details.

success
boolean
Example:

true

data
object