Back to Home
ODAM Documentation
API Reference & Guides
ODAM Documentation
The memory layer for your AI applications
🎉
🚀 ODAM V4 Now Live on Production!
Production API at api.odam.dev, official SDK on PyPI, and complete docs at docs.odam.dev
Get Started
Quick Example
Python
import requests
# Add memory
response = requests.post(
"https://api.odam.dev/v1/chat",
json={
"message": "Hi, I'm Alex. I'm a developer from Kyiv.",
"user_id": "alex_kyiv"
}
)
# Later conversation
response = requests.post(
"https://api.odam.dev/v1/chat",
json={
"message": "What's my profession?",
"user_id": "alex_kyiv"
}
)
# AI remembers: "You're a developer from Kyiv!"
What's Next?
API Reference
Interactive Swagger documentation and complete API reference