Delete Memories
API Reference
Delete Memories
Soft-delete one or many memories by ID.
DELETE
Delete Memories
This endpoint requires wallet authentication for identity. It is free — no payment required.
Path Parameters
UUID of the memory to delete.
Response (200)
Always
true.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
| Status | Description |
|---|---|
| 404 | Memory not found (or already deleted, or belongs to another wallet). |
| 409 | Memory is immutable and cannot be deleted. |
| 422 | Invalid UUID format. |
Example
Response
Bulk Delete — DELETE /v1/memories
Delete multiple memories in a single request. Also free. Price: FREERequest Body
Array of memory UUIDs to delete (max 100).
Response (200)
Number of memories successfully deleted.
Array of IDs that could not be deleted (not found, immutable, or wrong wallet), if any.
Example
Response
Errors
| Status | Description |
|---|---|
| 422 | ids is missing, empty, or exceeds 100 items. |