Skip to content
Last updated

Permanently delete a thread and all associated messages. This operation cannot be undone.

DELETEhttps://api.aitronos.com/v1/threads/{thread_id}

Permanently delete a thread and all associated messages. This operation cannot be undone. The thread and all its messages will be permanently removed from the system.

Path Parameters

thread_id string required

The unique identifier of the thread to delete.

Bash
curl -X DELETE "https://api.aitronos.com/v1/threads/thread_abc123" \
  -H "X-API-Key: $FREDDY_API_KEY"

Response:

{
  "id": "thread_abc123",
  "deleted": true,
  "object": "thread.deleted"
}