Skip to main content
Price: $0.0001 USDC

Path Parameters

id
string
required
UUID of the memory to delete.

Response (200)

deleted
boolean
Always true.
id
string
The deleted memory’s UUID.
Deletion is soft — it sets deleted_at on the record. Deleted memories are excluded from all queries (recall, list). This allows future recovery if needed.

Errors

StatusDescription
404Memory not found (or already deleted, or belongs to another wallet).
422Invalid UUID format.

Example

curl -X DELETE https://api.memoclaw.dev/v1/memories/550e8400-e29b-41d4-a716-446655440000
Response
{
  "deleted": true,
  "id": "550e8400-e29b-41d4-a716-446655440000"
}