Conversational memory for AI agents
Give your agents persistent memory. Store conversation history, and let Honcho automatically build rich representations of users and context over time. Pay per request — no auth, no subscriptions.
Each wallet gets its own workspace, auto-provisioned on first use. Agents identify as peers within a workspace and interact through sessions. Honcho derives insights, summaries, and peer cards in the background.
Install Honcho Memory into AgentCash.
Run in your terminal
Onboard into AgentCash, make one live call against this API, then save it into your agent's persistent context.
Onboard AgentCash
Sets up AgentCash and routes you through credits if needed.
npx agentcash onboardTry the API
Discovers the origin and walks the first live call path.
npx agentcash try https://agentcash.honcho.devAdd for reuse
Keeps Honcho Memory available in your agent's persistent context.
npx agentcash add https://agentcash.honcho.devStore messages in a session. Auto-provisions workspace, peers, and session on first use. Each message specifies its author peer. Priced at $2 per million tokens of message content (~4 chars/token), with a $0.001 minimum per call.
POST /api/honcho/messagesQuery a peer's memory with a natural language question. Returns what Honcho has learned from stored conversations. Price varies by reasoning_level.
POST /api/honcho/chatGet a markdown summary of what Honcho has learned about a peer from conversation history. Free with SIWX wallet auth.
POST /api/honcho/representationGet key facts about a peer, maintained automatically by Honcho as conversations progress. Free with SIWX wallet auth.
POST /api/honcho/cardGet session context for LLM consumption — recent messages, optional summary, and peer representation. Free with SIWX wallet auth.
POST /api/honcho/contextList all peers in a workspace with their metadata and creation timestamps. Free with SIWX wallet auth.
POST /api/honcho/peersList sessions in the workspace, paginated.
POST /api/honcho/sessionsList messages in a session, paginated and ordered by creation time.
POST /api/honcho/messages/listList peers participating in a session.
POST /api/honcho/sessions/peersAdd peers to a session. Auto-provisions peers and the session on first use.
POST /api/honcho/sessions/peers/addRemove peers from a session.
POST /api/honcho/sessions/peers/removePermanently delete a session and all of its messages.
POST /api/honcho/sessions/deleteShort and long summaries Honcho has generated for a session.
POST /api/honcho/sessions/summariesSemantic search over messages. Defaults to the whole workspace; pass session or peer to scope it.
POST /api/honcho/searchReplace a peer's card (or this peer's card about a target) with a new array of facts.
POST /api/honcho/card/setList the sessions a specific peer participates in, paginated.
POST /api/honcho/peers/sessions