Skip to main content

DELETE /accounts

This endpoint permanently deletes the authenticated user’s account and all associated data. This action is irreversible.
This is a destructive operation. Once an account is deleted, it cannot be recovered.

Response

success
boolean
Indicates whether the account deletion was successfully initiated.
deletionId
string
A unique identifier for the deletion process for tracking purposes.
timeline
string
Information about when the data will be permanently erased.
curl -X DELETE https://api.llmgenerator.com/api/v1/accounts \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "deletionId": "del_xxxxxxxxxxxxxxx",
  "timeline": "Data will be permanently erased in 7 days."
}