API ReferenceWallets
Delete Wallet
Permanently delete a wallet and all associated data.
Delete Wallet
Permanently removes a wallet, all its transactions, and spending controls. This action cannot be undone.
Authentication
Requires X-API-Key header.
Path parameters
| Parameter | Type | Description |
|---|---|---|
id | string | Wallet UUID |
Request
curl -X DELETE http://localhost:4000/v1/wallets/WALLET_ID \
-H "X-API-Key: ak_your_key"Response (200)
{
"deleted": true,
"id": "wallet-uuid"
}Errors
| Status | Code | Description |
|---|---|---|
| 404 | NOT_FOUND | Wallet not found or doesn't belong to your API key |