v1.0 • Lead Management
Send messages and receive AI responses programmatically
The Chat API allows you to integrate your chatbot into any application
Use this API to send messages to your chatbot and receive AI-powered responses. The API supports both streaming (real-time) and non-streaming responses, making it suitable for various integration scenarios.
Conversation History
Maintain context across messages
Streaming Responses
Real-time token-by-token output
Knowledge Base
Responses use your trained data
Send a message and get AI response
/api/v1/chatbots/{chatbotId}/chatSend your first message in seconds
curl -X POST https://your-domain.com/api/v1/chatbots/{chatbotId}/chat \
-H "Authorization: Bearer sk-workspace_xxxxxxxxxxxxx" \
-H "Content-Type: application/json" \
-d '{
"message": "Hello, how can you help me?"
}'