Specialized AI Agent API with Memory & Temporal Awareness
curl https://lumenlocal.codenlighten.org/api/health | jq '.'
curl -X POST https://lumenlocal.codenlighten.org/api/chat \
-H "Content-Type: application/json" \
-H "X-Timezone: America/New_York" \
-d '{"query": "What time is it?"}'
curl -X POST https://lumenlocal.codenlighten.org/api/terminal \
-H "Content-Type: application/json" \
-d '{"query": "Find all files larger than 100MB"}'
# Get session info
GET /api/session/:sessionId
# Delete session
DELETE /api/session/:sessionId
# Chat with session memory
curl -X POST https://lumenlocal.codenlighten.org/api/chat \
-H "Content-Type: application/json" \
-d '{
"query": "Remember, my favorite color is blue",
"sessionId": "my-session-123"
}'
For complete API documentation, examples, and schema definitions:
/schemas directory for JSON schema definitionsverify-production.sh for comprehensive endpoint tests