Quickstart
Get your first CekatAI Chat integration running in under 5 minutes.
Prerequisites
- A CekatAI account (sign up at cekat.ai)
- A verified phone number
- A WhatsApp Business account (optional)
Step 1: Install the SDK
npm install cekatai-sdk
Step 2: Get Your API Key
- Log into your CekatAI Dashboard
- Navigate to Settings > API Keys
- Click Generate New Key
- Copy your key securely
Keep your API key secret! Never expose it in client-side code or public repositories.
Step 3: Send Your First Message
const CekatAI = require('cekatai-sdk');
const client = new CekatAI({ apiKey: 'your-api-key' });
const response = await client.messages.send({
to: '+62812345678',
message: 'Hello from CekatAI!'
});
console.log(response);
