Developer Tools

Everything you need to build powerful integrations with Cention.

  • RESTful APIs with JSON responses
  • Webhook notifications for real-time events
  • JavaScript SDK for chat integration
  • Bot API for chatbot development
  • Export API for data extraction
// Create a new errand via API
const response = await fetch(
  'https://api.cention.io/v1/errands',
  {
    method: 'POST',
    headers: {
      'Authorization': `Bearer ${apiKey}`,
      'Content-Type': 'application/json'
    },
    body: JSON.stringify({
      channel: 'email',
      from: 'customer@example.com',
      subject: 'Help request',
      message: 'I need assistance...'
    })
  }
);

Need Help?

Can't find what you're looking for? Our support team is here to help.