Honcho

Honcho Memory API

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.

AgentCash

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.

Step 1

Onboard AgentCash

Sets up AgentCash and routes you through credits if needed.

$npx agentcash onboard
Step 2

Try the API

Discovers the origin and walks the first live call path.

$npx agentcash try https://agentcash.honcho.dev
Step 3

Add for reuse

Keeps Honcho Memory available in your agent's persistent context.

$npx agentcash add https://agentcash.honcho.dev
Honchoagentcash.honcho.dev
AgentCash Docs

Endpoints

Messages

$0.001+ / 1M tokens

Store 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/messages

Chat

$0.001–$0.50

Query 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/chat

Representation

Free

Get a markdown summary of what Honcho has learned about a peer from conversation history. Free with SIWX wallet auth.

POST /api/honcho/representation

Card

Free

Get key facts about a peer, maintained automatically by Honcho as conversations progress. Free with SIWX wallet auth.

POST /api/honcho/card

Context

Free

Get session context for LLM consumption — recent messages, optional summary, and peer representation. Free with SIWX wallet auth.

POST /api/honcho/context

Peers

Free

List all peers in a workspace with their metadata and creation timestamps. Free with SIWX wallet auth.

POST /api/honcho/peers

Sessions

Free

List sessions in the workspace, paginated.

POST /api/honcho/sessions

List Messages

Free

List messages in a session, paginated and ordered by creation time.

POST /api/honcho/messages/list

Session Peers

Free

List peers participating in a session.

POST /api/honcho/sessions/peers

Add Session Peers

Free

Add peers to a session. Auto-provisions peers and the session on first use.

POST /api/honcho/sessions/peers/add

Remove Session Peers

Free

Remove peers from a session.

POST /api/honcho/sessions/peers/remove

Delete Session

Free

Permanently delete a session and all of its messages.

POST /api/honcho/sessions/delete

Session Summaries

Free

Short and long summaries Honcho has generated for a session.

POST /api/honcho/sessions/summaries

Search

Free

Semantic search over messages. Defaults to the whole workspace; pass session or peer to scope it.

POST /api/honcho/search

Set Card

Free

Replace a peer's card (or this peer's card about a target) with a new array of facts.

POST /api/honcho/card/set

Peer Sessions

Free

List the sessions a specific peer participates in, paginated.

POST /api/honcho/peers/sessions