Chatbots
List chatbot templates
Members
Chatbots
Conversations
Knowledge base
Chatbots
List chatbot templates
Get a list of all the available chatbot templates. Can be used to create a new chatbot.
GET
/
chatbot-templates
curl --request GET \
--url https://api.chatling.ai/v2/chatbot-templates \
--header 'Authorization: Bearer <token>'
{
"status": "success",
"data": {
"pages": {
"current_page": 1,
"last_page": 1,
"per_page": 25
},
"templates": [
{
"id": 1,
"name": "AI Chatbot",
"description": "Uses AI to automatically respond to customers by leveraging your data, such as your website content, documents, and more."
},
{
"id": 2,
"name": "Basic Lead Generation",
"description": "Engage with prospective leads and capture their contact information."
}
]
}
}
Request parameters
Query
The page number for pagination.
Response
The status of the request. Will be success
if the request was successful, otherwise error
.
{
"status": "success",
"data": {
"pages": {
"current_page": 1,
"last_page": 1,
"per_page": 25
},
"templates": [
{
"id": 1,
"name": "AI Chatbot",
"description": "Uses AI to automatically respond to customers by leveraging your data, such as your website content, documents, and more."
},
{
"id": 2,
"name": "Basic Lead Generation",
"description": "Engage with prospective leads and capture their contact information."
}
]
}
}
curl --request GET \
--url https://api.chatling.ai/v2/chatbot-templates \
--header 'Authorization: Bearer <token>'
{
"status": "success",
"data": {
"pages": {
"current_page": 1,
"last_page": 1,
"per_page": 25
},
"templates": [
{
"id": 1,
"name": "AI Chatbot",
"description": "Uses AI to automatically respond to customers by leveraging your data, such as your website content, documents, and more."
},
{
"id": 2,
"name": "Basic Lead Generation",
"description": "Engage with prospective leads and capture their contact information."
}
]
}
}