Build powerful integrations with Cincht's RESTful API. Complete reference documentation for developers.
API keys are available in your account settings after signing up.
Create an account and verify your email address.
Go to Settings → API Keys → Create New Key
curl https://api.cincht.com/v1/conversations \ -H "Authorization: Bearer YOUR_API_KEY"
Learn how to authenticate API requests using API keys and OAuth.
Send messages, manage conversations, and handle webhooks.
Manage contacts, segments, and customer data.
Set up webhooks to receive real-time events.
Retrieve analytics data and reports.
Create and manage WhatsApp message templates.
const response = await fetch(
'https://api.cincht.com/v1/messages',
{
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
to: '+1234567890',
message: 'Hello from Cincht!'
})
}
);const response = await fetch(
'https://api.cincht.com/v1/conversations',
{
headers: {
'Authorization': 'Bearer YOUR_API_KEY'
}
}
);
const conversations = await response.json();Use our official SDKs for faster integration
npm install @cincht/apipip install cincht-apicomposer require cincht/apiGet your API key and start building powerful integrations