Wallets
Create custodial wallet
Create a new wallet custodied by a third-party provider.
post/v1/custodial_wallets
Headers
privy-app-idstring required
ID of your Privy app.
privy-idempotency-keystring
Idempotency keys ensure API requests are executed only once within a 24-hour window.
Request body
Example request
{
"chain_type": "ethereum",
"provider": "bridge",
"provider_user_id": "1234567890"
}Response
Newly created custodial wallet.
Example response
{
"additional_signers": [],
"address": "0xB00F0759DbeeF5E543Cc3E3B07A6442F5f3928a2",
"chain_type": "ethereum",
"custody": {
"provider": "bridge",
"provider_user_id": "1234567890"
},
"id": "id2tptkqrxd39qo9j423etij",
"owner_id": null,
"policy_ids": []
}