Recents
💬
No recent chats yet
AlphaUpgrade Plan →
👤Account & Tokens📁My Projects🧠My Memory📋Follow-Ups🔌Connectors🌐My Public PagesAgent Tasks💻Developer API🔍Looking Glass☀️Run My Day🔨Build Anything🤖My Agents🌤️Daily Briefing🛒MarketplaceSkills⚙️Memory Settings🎁Referral — Get Tokens
🌍Community🔗Embed CHOW
DEVELOPER API

Build with CHOW

Embed memory-first AI into any product. Chat, research, file generation, and memory endpoints with streaming support.

Get API key →View endpoints

Quick start

cURLREST API
curl -X POST https://askchow.ai/api/v1/chat \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "message": "What are my top priorities this week?",
    "memory": ["Working on a SaaS product", "Launch is Q3 2026"],
    "stream": false
  }'
Response
{
  "reply": "Based on your Q3 launch timeline and SaaS product context, your top priorities this week should be...",
  "tokens_used": 247,
  "model": "claude-sonnet-4",
  "memory_context_used": true
}

Authentication

All API requests require a Bearer token in the Authorization header.

Authorization: Bearer ck_live_xxxxxxxxxxxxxxxxxxxxx

API keys are available on Builder and Team plans. Generate yours in Account → API Keys.

Endpoints

POST/api/v1/chat

Send a message to CHOW and get a streamed or JSON response.

Parameters
messagestringrequiredThe user message
historyMessage[]Conversation history array
memorystring[]Memory context to inject
streambooleanStream response as SSE
systemstringCustom system prompt override
POST/api/v1/research

Run a deep research query. Returns a cited report with sources.

Parameters
querystringrequiredResearch topic or question
streambooleanStream progress as SSE
POST/api/v1/build

Generate a file from content. Returns a download URL.

Parameters
contentstringrequiredContent to build from
formatdocx | pptx | xlsx | pdfrequiredOutput format
titlestringDocument title
GET/api/v1/memory

Retrieve memory items for the authenticated user.

Parameters
limitnumberMax items to return (default 50)
categorystringFilter by category
POST/api/v1/memory

Save a memory item.

Parameters
textstringrequiredMemory content to save
categorystringCategory (personal, project, task, etc.)

Rate limits

PlanRequests/minRequests/dayMax tokens/request
Pro105004,096
Builder302,0008,192
Team6010,0008,192
EnterpriseCustomCustomCustom

Ready to build?

API access included on Builder and Team plans.

Get API access →