Price: $0.0005 USDC
Query Parameters
Maximum number of results, 1–100. Default: 20.
Pagination offset. Default: 0.
Comma-separated tags. Filter memories matching any of the specified tags.
Response (200)
Array of memory objects.Show Memory object fields
Metadata attached to the memory.
ISO 8601 creation timestamp.
ISO 8601 last update timestamp.
ISO 8601 last access timestamp.
Number of times this memory has been recalled.
Total number of matching memories.
Example
curl "https://api.memoclaw.dev/v1/memories?limit=10&offset=0&tags=preferences,ui"
{
"memories": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"user_id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"namespace": "default",
"content": "User prefers dark mode and vim keybindings",
"metadata": {
"tags": ["preferences", "ui"]
},
"importance": 0.8,
"created_at": "2025-01-15T10:30:00Z",
"updated_at": "2025-01-15T10:30:00Z",
"accessed_at": "2025-01-20T14:22:00Z",
"access_count": 3
}
],
"total": 1,
"limit": 10,
"offset": 0
}