C
Chatty

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

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"
}

Next steps