GET
/
wallets
List caller wallets
curl --request GET \
  --url https://app.afkcrypto.com/api/v1/wallets \
  --header 'x-api-key: <api-key>'
{
  "wallets": [
    {
      "address": "0xabc...",
      "chainType": "ethereum",
      "isPrimary": true,
      "delegated": true,
      "providerType": "embedded",
      "clientType": "privy"
    }
  ]
}

Query parameters

  • chain: ethereum | solana (optional)
  • primaryOnly: boolean (optional)
  • delegatedOnly: boolean (optional)
{
  "wallets": [
    {
      "address": "0xabc...",
      "chainType": "ethereum",
      "isPrimary": true,
      "delegated": true,
      "providerType": "embedded",
      "clientType": "privy"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Query Parameters

chain
enum<string>

Filter by chain type

Available options:
ethereum,
solana
primaryOnly
boolean
delegatedOnly
boolean

Response

200
application/json

Wallet list

The response is of type object.