Introduction
Chatty is an AI chatbot platform — build, train, and deploy intelligent chat assistants for your website, mobile app, or any product without writing AI code.
The Chatty API gives you programmatic access to everything: send messages, read leads, manage knowledge sources, and pull analytics — all from your own backend.
What you can build
Custom Chat Interfaces
Embed the bot in your own React, Vue, or native app. Stream messages directly — no iFrame required.
CRM Integrations
Sync captured leads to HubSpot, Salesforce, or any CRM. Pull leads via API and push them wherever you need.
Knowledge Automation
Keep your bot's knowledge base fresh. Trigger URL crawls, add content from your CMS, and remove stale sources programmatically.
Analytics Dashboards
Build internal reporting on conversation volume, lead conversion, and response quality.
Base URL
All API requests go to:
https://api.personaliai.com
Quick example
curl -X POST https://api.personaliai.com/api/v1/chat \
-H "Authorization: Bearer chatty_sk_your_key_here" \
-H "Content-Type: application/json" \
-d '{"text": "What are your pricing plans?", "session_id": "user-abc"}'{
"reply": "We offer three plans: Starter (free), Pro ($29/mo), and Business ($99/mo)...",
"session_id": "user-abc"
}