Base URL
Authentication
All endpoints require a Bearer token:Endpoints
POST /v1/memory
Store a new memory
GET /v1/memory/search
Search memories by semantic similarity
GET /v1/memory/:id
Retrieve a specific memory
GET /v1/memory/list
List memories with pagination
PATCH /v1/memory/:id
Update a memory
DELETE /v1/memory/:id
Delete a memory
GET /v1/health
Health check
Common response format
All successful responses return JSON:Error format
| Code | Error | Description |
|---|---|---|
| 400 | bad_request | Invalid parameters |
| 401 | unauthorized | Missing or invalid API key |
| 403 | forbidden | Key lacks required scope |
| 404 | not_found | Memory not found |
| 429 | rate_limit_exceeded | Too many requests |
| 500 | internal_error | Server error |