CekatAI

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

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

ResourceMethodEndpointDescription
MessagesPOST/v1/messages/sendSend a message to a customer
ContactsGET/v1/contactsList all contacts
TicketsPOST/v1/ticketsCreate a new support ticket
OrdersGET/v1/ordersRetrieve order list
WebhooksPOST/v1/webhooksRegister 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"