API ReferenceWallets
Create Wallet
Create a new multi-chain wallet linked to your API key.
Create Wallet
Creates a new managed wallet with addresses on Ethereum, Base, and Solana.
Authentication
Requires X-API-Key header.
Request
curl -X POST http://localhost:4000/v1/wallets \
-H "X-API-Key: ak_your_key" \
-H "Content-Type: application/json" \
-d '{"name": "trading-wallet"}'Response (201)
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "trading-wallet",
"addresses": {
"ethereum": "0x742d35Cc6634C0532925a3b844Bc9e7595f2bD38",
"base": "0x742d35Cc6634C0532925a3b844Bc9e7595f2bD38",
"solana": "7vYr3eFhHkxStQ5T2poQZ8fXvC2Hxs5mZXsqVkT7xpNR"
},
"created_at": "2026-03-26T12:00:00.000Z"
}Response fields
| Field | Type | Description |
|---|---|---|
id | string | Wallet UUID |
name | string | Wallet name |
addresses.ethereum | string | EVM address (same across all EVM chains) |
addresses.base | string | EVM address on Base |
addresses.solana | string | Solana address |
created_at | string | ISO 8601 timestamp |