Skip to main content
DELETE
/
v1
/
avatars
/
{id}
Delete Avatar
curl --request DELETE \
  --url https://api.agenthuman.com/v1/avatars/{id} \
  --header 'x-api-key: <api-key>'
{
  "success": true
}
Permanently deletes an avatar. Only succeeds for avatars that you uploaded yourself — you cannot delete avatars owned by other users.

Path Parameters

id
string
required
The avatar ID to delete (format: avat_<ULID>). You can find your avatars at app.agenthuman.com/avatars or via Upload Face Avatar.

Response

success
boolean
Whether the avatar was deleted successfully.
{
  "success": true
}