DB-as-a-service for AI agents
AgentState
Conversation history for AI agents.
Store, retrieve, and manage multi-turn conversations across any framework.
01
Store Conversations
Persist full conversation threads with roles, content, and custom metadata. Built for multi-turn agent interactions.
02
AI-Powered
Auto-generate conversation titles and follow-up suggestions. Let your agents organize their own history intelligently.
03
Any Framework
Works with Claude, OpenAI, LangChain, AutoGen, or any custom agent. Simple REST API, no SDK required.
terminal
# Create a conversation
$ curl -X POST https://agentstate.app/api/v1/conversations \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{"messages": [{"role": "user", "content": "Hello"}]}'
# Response
{"id": "conv_01jx...", "title": "New Conversation", ...}