Skip to main content
When running locally, EverMemOS exposes a set of REST endpoints.

Base URL

By default, the API is available at: http://localhost:8000

Endpoints

Store Memory

curl -X POST "http://localhost:8000/api/v1/memories" \
     -H "Content-Type: application/json" \
     -d '{ 
           "content": "Meeting scheduled for Friday at 10 AM.",
           "user_id": "user_123"
         }'

Search Memory

curl -X GET "http://localhost:8000/api/v1/memories/search?query=meeting&user_id=user_123"
For a complete API reference, please consult the Swagger UI available at http://localhost:8000/docs when the service is running.