Skip to main content
DELETE
/
api
/
wallets
Remove wallet
curl --request DELETE \
  --url https://app.d-sports.org/api/wallets \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "address": "<string>"
}
'

Authorizations

Authorization
string
header
required

Clerk session token. Use Authorization: Bearer .

Body

application/json
address
string
required

Ethereum address to remove. Normalized to lowercase.

Pattern: ^0x[a-fA-F0-9]{40}$

Response

{ success, data: { message } }