https://gateway-api.aichatbot.websitebyct.in/v1/templatesRetrieve a list of all WhatsApp templates associated with your chatbot. Returns template details including approval status, category, language, and meta components.
x-api-key| Parameter | Required | Type | Description |
|---|---|---|---|
status | No | string | Filter templates by review status (e.g. approved, submitted, rejected, paused). |
search | No | string | Search templates by name or language. |
page | No | number | Page number. Default is 1. |
limit | No | number | Items per page. Default is 10, maximum is 100. |
{
"success": true,
"message": "Templates fetched successfully",
"requestId": "7cf0743f-f852-4268-b5db-a2617dbd75b4",
"data": {
"items": [
{
"_id": "<TEMPLATE_ID>",
"name": "order_update",
"language": "en_US",
"category": "utility",
"status": "approved",
"components": [
{
"type": "BODY",
"text": "Hi {{1}}, your order {{2}} has been confirmed!"
}
],
"version": 1,
"createdAt": "2026-04-16T06:15:00.000Z",
"updatedAt": "2026-04-16T06:15:00.000Z"
}
],
"pagination": {
"page": 1,
"limit": 10,
"total": 1,
"totalPages": 1
}
}
}