SDKs & Libraries
CekatAI provides official SDKs to make API integration easier in your preferred programming language.
Official SDKs
Node.js
bash
npm install cekatai-sdk
javascript
const CekatAI = require('cekatai-sdk');
const client = new CekatAI({ apiKey: 'YOUR_API_KEY' });
const response = await client.messages.send({
to: '+62812345678',
text: 'Hello from CekatAI!'
});
Python
bash
pip install cekatai
python
import cekatai
client = cekatai.Client(api_key="YOUR_API_KEY")
response = client.messages.send(
to="+62812345678",
text="Hello from CekatAI!"
)
PHP
bash
composer require cekatai/cekatai-php
Community Libraries
- Go — github.com/cekatai/cekatai-go
- Ruby — github.com/cekatai/cekatai-ruby
- Java — github.com/cekatai/cekatai-java
REST API
If an SDK is not available for your language, you can use the REST API directly with any HTTP client.
