Delete Account

Permanently delete the authenticated user's account and all associated data.

Delete User Account

Permanently delete the authenticated user's account. This removes all personal data, devices, subscription records, connection history, and token balances.

DELETE/api/v1/users/me/account

Permanently delete the authenticated user's account

Authentication:Bearer Token

Irreversible Action

This action is permanent and cannot be undone. All of the following will be deleted:

  • User profile and personal information
  • All registered devices
  • Active subscription (no refund will be issued)
  • Connection history and usage statistics
  • Token balance and transaction history
  • Referral data and earned commissions

Make sure to withdraw any remaining token balance before deleting your account.

curl -X DELETE https://api.orbai.world/api/v1/users/me/account \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
200Account deleted successfully
{
  "success": true,
  "message": "Your account has been permanently deleted. All associated data has been removed."
}
401Authentication required
{
  "success": false,
  "error": {
    "code": "UNAUTHORIZED",
    "message": "Invalid or expired access token"
  }
}
409Account has active sessions
{
  "success": false,
  "error": {
    "code": "ACTIVE_SESSIONS",
    "message": "Please disconnect all active VPN sessions before deleting your account"
  }
}

Data Retention

After account deletion, anonymized usage statistics may be retained for aggregate analytics purposes in compliance with our privacy policy. No personally identifiable information is kept.