Skip to main content

Documentation Index

Fetch the complete documentation index at: https://automatebusiness.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

The Automate Chats API allows you to programmatically send WhatsApp template messages and manage your templates from external systems like CRM, Pabbly, or Zapier.

Base URL

All API requests should be made to the following base URL:
https://api.automatechats.com

Authentication

All API endpoints are secured using an API Key. You must include your API key in the request header for every request.
HeaderValue
X-API-KeyYOUR_SECRET_API_KEY
Content-Typeapplication/json
To learn how to generate your API key, check out the Authentication guide.

Response Format

The API returns data in JSON format. A typical success response looks like this:
{
  "status": "success",
  "data": {
    // Response data here
  }
}
In case of an error, the API returns an appropriate HTTP status code and an error message:
{
  "status": "error",
  "message": "Detailed error message here"
}