Skip to content
Last updated

🔨 In Development — This section is still being developed and may change.
Permanently delete a thread and all associated messages. This operation cannot be undone.
DELETEhttps://api.freddy.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.freddy.aitronos.com/v1/threads/thread_abc123" \
  -H "Authorization: Bearer $FREDDY_API_KEY"

Response

{
  "success": true,
  "threadId": "thread_abc123",
  "message": "Thread and all messages deleted successfully"
}