API for managing personal memory items with authentication and user-specific data.
API for managing personal memory items with authentication and user-specific data.
This API supports three authentication methods:
X-API-Key headerX-API-Key: <your-api-key>X-Session-Token headerX-Session-Token: <your-session-token>Authorization headerAuthorization: Bearer <token>All endpoints require one of these authentication methods.
curl -i -X POST \
https://memoryserver-staging-223473570766.us-west1.run.app/v1/ai/openai/chat/completions \
-H 'X-API-Key: YOUR_API_KEY_HERE'curl -i -X POST \
https://memoryserver-staging-223473570766.us-west1.run.app/v1/ai/openai/responses \
-H 'X-API-Key: YOUR_API_KEY_HERE'curl -i -X POST \
https://memoryserver-staging-223473570766.us-west1.run.app/v1/ai/anthropic/messages \
-H 'X-API-Key: YOUR_API_KEY_HERE'