---
title: "Delete User"
description: "Delete a user by ID. Use with caution."
api: "DELETE /users/{user_id}"
---
## Request
The ID of the user, or the special value `"me"` for the currently authenticated user.
## Response
Successful response indicating the user was deleted.
```bash cURL
curl -X DELETE "https://api.stack-auth.com/users/USER_ID" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
```