CekatAI

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

  1. Log into your CekatAI Dashboard
  2. Navigate to Settings > API Keys
  3. Click Generate New Key
  4. 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);

What's Next?