Skip to main content
DELETE
/
v1
/
agents
/
{agent_id}
Delete Agent
curl --request DELETE \
  --url https://api.agenthuman.com/v1/agents/{agent_id} \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "message": "Agent deleted successfully"
}
Deleting an agent is permanent and cannot be undone. All Links pointing to this agent will stop working immediately.

Path Parameters

agent_id
string
required
The unique agent identifier (starts with agnt_).

Response

success
boolean
Whether the deletion was successful.
message
string
Confirmation message.
{
  "success": true,
  "message": "Agent deleted successfully"
}