EVM Smart Accounts
Create a Smart Account
REST API
- EVM Accounts
- EVM Smart Accounts
- EVM Swaps
- EVM Token Balances
- Faucets
- PaymentsAlpha
- Policy Engine
- Solana Accounts
EVM Smart Accounts
Create a Smart Account
Creates a new Smart Account.
POST
/
v2
/
evm
/
smart-accounts
Copy
Ask AI
curl --request POST \
--url https://api.cdp.coinbase.com/platform/v2/evm/smart-accounts \
--header 'Content-Type: application/json' \
--data '{
"owners": [
"0xfc807D1bE4997e5C7B33E4d8D57e60c5b0f02B1a"
],
"name": "my-smart-wallet"
}'
Copy
Ask AI
{
"address": "0x742d35Cc6634C0532925a3b844Bc454e4438f44e",
"owners": [
"0xfc807D1bE4997e5C7B33E4d8D57e60c5b0f02B1a"
],
"name": "my-smart-account",
"createdAt": "2025-03-25T12:00:00Z",
"updatedAt": "2025-03-26T12:00:00Z"
}
Body
application/json
Response
201
application/json
Successfully created Smart Account.
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request POST \
--url https://api.cdp.coinbase.com/platform/v2/evm/smart-accounts \
--header 'Content-Type: application/json' \
--data '{
"owners": [
"0xfc807D1bE4997e5C7B33E4d8D57e60c5b0f02B1a"
],
"name": "my-smart-wallet"
}'
Copy
Ask AI
{
"address": "0x742d35Cc6634C0532925a3b844Bc454e4438f44e",
"owners": [
"0xfc807D1bE4997e5C7B33E4d8D57e60c5b0f02B1a"
],
"name": "my-smart-account",
"createdAt": "2025-03-25T12:00:00Z",
"updatedAt": "2025-03-26T12:00:00Z"
}
Assistant
Responses are generated using AI and may contain mistakes.