v3

latestOpenAPI 3.0.32026-07-31489099.0 KB
Addresses

List addresses for account

Returns wallet addresses associated with your account, including custodial wallets and EOAs. Archived custodial (internal) addresses are omitted.

get/accounts/{account_id}/addresses

Path parameters

account_idstring required

ID of the resource

Example:2VZvtmVc2j3gQ80CTlcuQXbGrwC

Account ID

Query parameters

addressstring
Example:0xb518d4d6221d9a41d23d71cbce8e106e7aab8f9b

Filter by onchain address (case-insensitive)

type'internal' | 'external'
Example:internal

Filter by address type

transfer_typestring
Example:ethereum

Filter by transfer type (can be specified multiple times for OR logic)

afterstring
beforestring
sizeinteger

Pagination parameters

Response

OK

Example response

{
  "addresses": [
    {
      "address": "0xb518d4d6221d9a41d23d71cbce8e106e7aab8f9b",
      "created": "2020-01-01T12:00:00Z",
      "id": "2VZvtmVc2j3gQ80CTlcuQXbGrwC",
      "name": "Company External EVM Address",
      "transfer_types": [
        "solana"
      ]
    }
  ]
}