Retrieve the details of a specific account by its unique account ID. The response includes the account’s display name and all wallets associated with the account across different chain types and custody configurations.Documentation Index
Fetch the complete documentation index at: https://docs.privy.io/llms.txt
Use this file to discover all available pages before exploring further.
View the full API reference for getting an account or listing all
accounts.
Usage
- REST API
To get an account via REST API, make a
GET request to:Path parameters
The unique ID of the account to retrieve.
Response
The response will include the following fields:The unique ID of the account.
An optional display name for the account.
The wallets belonging to this account. Each wallet contains:
id(string): The wallet IDchain_type(‘ethereum’ | ‘solana’): The chain type of the walletaddress(string): The on-chain address of the walletcustody(CustodyConfiguration | undefined): The custody configuration if the wallet is custodial
custody is undefined, the wallet is non-custodial.The CustodyConfiguration type is defined as {provider: string; provider_user_id: string} where:provideris the custody provider.provider_user_idis the custody provider’s unique ID for the KYC’ed entity for the wallet.

