Skip to main content
DELETE
/
api
/
users
/
me
/
account
curl -X DELETE https://api.finscreener.in/api/users/me/account \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "success": true,
  "message": "Your account and associated data have been permanently deleted.",
  "request_id": "req_abc123"
}
Permanently delete your account and all associated personal data. This action is irreversible. This endpoint implements the Right to Erasure under the Digital Personal Data Protection Act (DPDPA), 2023.
This action cannot be undone. All your data — screeners, watchlists, credits, AI conversations — will be permanently deleted. Financial records (orders, subscriptions) will be anonymized for audit compliance.

Headers

Authorization
string
required
Bearer token: Bearer <access_token>

What Gets Deleted

DataAction
User profile & credentialsDeleted
WatchlistsDeleted
Saved screenersDeleted
Credit ledgerDeleted
API usage recordsDeleted
AI conversations & messagesDeleted
Rate limit recordsDeleted
Active sessionsInvalidated
Orders & subscriptionsAnonymized (audit trail preserved)
curl -X DELETE https://api.finscreener.in/api/users/me/account \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "success": true,
  "message": "Your account and associated data have been permanently deleted.",
  "request_id": "req_abc123"
}

Error Codes

StatusDescription
200Account deleted successfully
401Unauthorized — invalid or expired token
403Account is suspended — contact support
500Deletion failed — contact support
After deletion, your access token will no longer work. You will need to create a new account to use Finscreener again.