Skip to main content
GET
/
get-chatbots
Get all chatbots
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"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key in Bearer token format

Response

List of chatbots retrieved successfully

chatbots
object[]
I