List AI Agents in Your Workspace — ChatbotX REST API
Use GET /api/v1/ai-agents to list all AI agents configured in your ChatbotX workspace, including model settings, system prompts, and enabled tools.
AI agents in ChatbotX are configurable LLM-powered assistants that can handle conversations autonomously. Each agent has a system prompt, a set of AI models, tools it can use (such as web search), and temperature and token settings that control its behaviour. Use this endpoint to retrieve all AI agents in your workspace for inspection, synchronisation, or configuration auditing.
{ "data": [ { "id": "agent_001", "name": "Support Bot", "prompt": "You are a helpful customer support agent for Acme Corp. Answer questions about products and orders. Escalate to a human if the user is frustrated.", "models": ["gpt-4o"], "tools": ["web_search", "contact_lookup"], "webSearchAuthorizedDomains": ["acme.com", "docs.acme.com"], "messages": [], "isDefault": true, "temperature": 0.3, "maxOutputTokens": 1024, "workspaceId": "42", "createdAt": "2024-01-05T10:00:00Z", "updatedAt": "2024-04-20T14:30:00Z" } ], "pageCount": 1}
⌘I
Assistant
Responses are generated using AI and may contain mistakes.