메인 콘텐츠로 건너뛰기
GET
/
wallets
List caller wallets
curl --request GET \
  --url https://api.afkcrypto.com/v1/wallets \
  --header 'x-api-key: <api-key>'
{
  "wallets": [
    {
      "address": "0xabc...",
      "chainType": "ethereum",
      "isDefault": true,
      "automationEnabled": true,
      "providerType": "embedded",
      "clientType": "privy"
    }
  ]
}
isDefaultautomationEnabled는 연결된 계정에서 파생됩니다.
{
  "wallets": [
    {
      "address": "0xabc...",
      "chainType": "ethereum",
      "isDefault": true,
      "automationEnabled": true,
      "providerType": "embedded",
      "clientType": "privy"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Query Parameters

chain
enum<string>

Filter by chain type

사용 가능한 옵션:
ethereum,
solana
defaultOnly
boolean

Return only default wallets.

automationOnly
boolean

Return only wallets with automation enabled.

Response

Wallet list

wallets
object[]
required