Developer API
Convobix REST API v1
Programmatically manage agents, trigger chat completions, and sync knowledge bases using our HTTP REST API.
Authentication
Pass your API secret key in the HTTP Authorization header:
Authorization: Bearer cbx_live_sk_9876543210POST
/api/v1/chats/sendSend a customer query to your trained AI agent and get a structured response with source citations.
curl -X POST https://api.convobix.com/api/v1/chats/send \
-H "Authorization: Bearer cbx_live_sk_12345" \
-H "Content-Type: application/json" \
-d '{
"agent_id": "ag_88721",
"message": "What is your return policy?"
}'GET
/api/v1/conversationsRetrieve Paginated list of active AI conversations and analytics.