cURL
curl --request GET \ --url https://api.privy.io/v1/accounts \ --header 'Authorization: Basic <encoded-value>' \ --header 'privy-app-id: <privy-app-id>'
{ "data": [ { "id": "<string>", "display_name": "<string>", "wallets": [ { "id": "<string>", "chain_type": "ethereum", "address": "<string>" } ] } ], "next_cursor": "<string>" }
List all accounts in your app.
Basic Auth header with your app ID as the username and your app secret as the password.
ID of your Privy app.
1
x <= 100
Optional search term to filter accounts by display name, account ID, or wallet address.
Paginated list of accounts.
Paginated list of digital asset accounts.
The list of accounts.
Show child attributes
Cursor for fetching the next page of results, or null if no more results.
Was this page helpful?