curl --request GET \
--url https://www.chatbase.co/api/v1/get-chatbots \
--header 'Authorization: Bearer <token>'{
"chatbots": [
{
"id": "ckl123abc456",
"name": "Customer Support Bot",
"status": "ready",
"model": "gpt-4o-mini",
"instructions": "You are a helpful customer service assistant",
"visibility": "public",
"created_at": "2024-01-01T12:00:00Z",
"updated_at": "2024-01-02T12:00:00Z"
}
]
}Retrieves all chatbots for the authenticated account
curl --request GET \
--url https://www.chatbase.co/api/v1/get-chatbots \
--header 'Authorization: Bearer <token>'{
"chatbots": [
{
"id": "ckl123abc456",
"name": "Customer Support Bot",
"status": "ready",
"model": "gpt-4o-mini",
"instructions": "You are a helpful customer service assistant",
"visibility": "public",
"created_at": "2024-01-01T12:00:00Z",
"updated_at": "2024-01-02T12:00:00Z"
}
]
}API key in Bearer token format
List of chatbots retrieved successfully
Show child attributes
Unique chatbot identifier
"ckl123abc456"
Chatbot name
"Customer Support Bot"
Current chatbot status
training, ready, failed "ready"
AI model being used
"gpt-4o-mini"
System instructions for the chatbot
"You are a helpful customer service assistant"
Chatbot visibility setting
public, private "public"
Creation timestamp
"2024-01-01T12:00:00Z"
Last update timestamp
"2024-01-02T12:00:00Z"