Visitor memory

Store durable facts about a visitor and read them back later.

Remember a fact

Write facts worth keeping across sessions: plan, locale, known blockers. Do not write secrets or payment data.

curl -X POST https://app.humaner.io/api/v1/intelligence/remember \
  -H "Authorization: Bearer hm_live_xxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{
    "agentId": "YOUR_AGENT_PUBLIC_ID",
    "visitorId": "visitor_abc123",
    "fact": "On the Team plan, migrating from Zendesk"
  }'

Read it back

curl -X POST https://app.humaner.io/api/v1/intelligence/memory \
  -H "Authorization: Bearer hm_live_xxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{
    "agentId": "YOUR_AGENT_PUBLIC_ID",
    "visitorId": "visitor_abc123"
  }'

You supply the visitor identity

Humaner has no session cookie on Custom because it never renders your UI. Pass a stable visitorId from your own auth or session layer.