API Documentation
Integrate AI customer service into your application with our REST API.
Endpoints
POST
/api/chatAuth requiredSend a message and get an AI response
GET
/api/conversationsAuth requiredList all conversations
GET
/api/conversations/:idAuth requiredGet a specific conversation
POST
/api/webhooksAuth requiredRegister a webhook for events
GET
/api/analyticsAuth requiredGet usage analytics and metrics
GET
/api/healthService health check
Quick Start
curl -X POST https://api.bizaiready.com/chat \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"message": "Do you have a table for 4 tonight?",
"businessType": "restaurant",
"businessName": "My Restaurant"
}'Authentication
All authenticated endpoints require a Bearer token in the Authorization header. Get your API key from the dashboard after signing up.