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

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?

Quickstart Guide

Get ODAM running in your application in under 5 minutes

Start building →

Core Concepts

Learn about ODAM's architecture and memory system

Learn more →

API Reference

Interactive Swagger documentation and complete API reference