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/chatbotsResponse
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 key500— server error
Related