API Endpoint Explorer
GET
/health
Check the health status of all connected services including Qdrant, Neo4j, PostgreSQL, and Redis.
Request
curl -X GET "http://api.example.com/health"
Response
{
"status": "healthy",
"services": {
"qdrant": { "status": "up", "version": "1.2.3" },
"neo4j": { "status": "up", "version": "4.4.5" },
"postgres": { "status": "up", "version": "14.5" },
"redis": { "status": "up", "version": "6.2.6" }
}
}
POST
/memory/store
Store memory data across multiple storage systems with automatic indexing.
Request
curl -X POST "http://api.example.com/memory/store" \
-H "Content-Type: application/json" \
-d '{ "content": "Sample memory content", "metadata": { "source": "web", "tags": ["important", "reference"] } }'
-H "Content-Type: application/json" \
-d '{ "content": "Sample memory content", "metadata": { "source": "web", "tags": ["important", "reference"] } }'
Response
{
"status": "success",
"memory_id": "mem_abc123xyz456",
"storage_details": {
"qdrant": { "collection": "memories", "vector_id": "vec_789" },
"neo4j": { "node_id": "n123", "relationships": 2 },
"postgres": { "table": "memories", "row_id": 456 }
}
}
Parameters
System Status Dashboard
Qdrant
Vector Storage
Healthy
Neo4j
Graph Database
Healthy
PostgreSQL
Relational DB
Healthy
Redis
Cache
Healthy