AI Logs
Store AI chat sessions via
POST https://projects.danmarcrm.com/api/ailogsNo AI logs yet
Post AI conversation sessions here via the API.
curl -X POST https://projects.danmarcrm.com/api/ailogs \
-H "X-Api-Key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"project_slug": "myproject",
"model": "claude-opus-4-6",
"title": "Session title",
"messages": [
{"role":"user","content":"Hello"},
{"role":"assistant","content":"Hi!"}
],
"tags": ["refactoring"]
}'