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"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://chatbase.co/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key in Bearer token format

Response

List of chatbots retrieved successfully

chatbots
object[]