Intro to Dev Page
The CekatAI Developer Page is your central hub for building custom integrations, connecting third-party tools, and extending CekatAI's functionality through our APIs and SDKs.
API Access is available on CekatAI Pro and Business plans. View pricing.
Key Features
API Reference
Complete REST API documentation with authentication, endpoints, and examples.
Webhooks
Receive real-time event notifications for messages, tickets, and order updates.
SDKs & Libraries
Official client libraries for Node.js, Python, PHP, and more.
Quick Start
Get Your API Key
Navigate to Settings > API Keys in your CekatAI dashboard. Click Generate New Key and copy the token.
Make Your First Request
Test the API with a simple GET request to verify your credentials are working.
Set Up Webhooks
Register a webhook URL to receive real-time events when messages arrive, tickets update, or orders change status.
Build Your Integration
Use our API endpoints or SDKs to send messages, manage contacts, create tickets, and more from your own application.
API Overview
| Resource | Method | Endpoint | Description |
|---|---|---|---|
| Messages | POST | /v1/messages/send | Send a message to a customer |
| Contacts | GET | /v1/contacts | List all contacts |
| Tickets | POST | /v1/tickets | Create a new support ticket |
| Orders | GET | /v1/orders | Retrieve order list |
| Webhooks | POST | /v1/webhooks | Register a webhook endpoint |
Authentication
All API requests require a Bearer token in the Authorization header:
curl -X GET https://api.cekat.ai/v1/contacts \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
