Chatbots
List chatbots
Members
Chatbots
Conversations
Knowledge base
Chatbots
List chatbots
Get a list of all the chatbots in the project.
GET
/
chatbots
curl --request GET \
--url https://api.chatling.ai/v2/chatbots \
--header 'Authorization: Bearer <token>'
{
"status": "success",
"data": {
"pages": {
"current_page": 1,
"last_page": 1,
"per_page": 25
},
"chatbots": [
{
"id": "8917794239",
"name": "My first chatbot",
"version": "2.0",
"visibility": "public",
"created_at": "2024-06-05T12:13:35:00+00:00"
}
]
}
}
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
},
"chatbots": [
{
"id": "8917794239",
"name": "My first chatbot",
"version": "2.0",
"visibility": "public",
"created_at": "2024-06-05T12:13:35:00+00:00"
}
]
}
}
curl --request GET \
--url https://api.chatling.ai/v2/chatbots \
--header 'Authorization: Bearer <token>'
{
"status": "success",
"data": {
"pages": {
"current_page": 1,
"last_page": 1,
"per_page": 25
},
"chatbots": [
{
"id": "8917794239",
"name": "My first chatbot",
"version": "2.0",
"visibility": "public",
"created_at": "2024-06-05T12:13:35:00+00:00"
}
]
}
}