BetaThe v2 API is in beta — fields and behavior may change without notice. For stable production usage, see the API v1 Reference.

Chatbots

Get all chatbots

Returns every chatbot your workspace owns. Today: dashboard-only via /chatbots; the contract below describes the planned v2 endpoint.

Endpoint

text
GET https://services.chatmount.co/v2/chatbots

Response

json
{
  "chatbots": [
    {
      "id": "agent_abc123",
      "name": "Customer Support Bot",
      "status": "ready",
      "model": "gpt-5.4-mini",
      "instructions": "You are a helpful customer service assistant",
      "visibility": "public",
      "createdAt": "2026-01-01T12:00:00Z",
      "updatedAt": "2026-01-02T12:00:00Z"
    }
  ]
}

Status values: training, ready, failed.

Errors

  • 401 — invalid or missing API key
  • 500 — server error

Related