Getting Started
AIAgentCore is an enterprise-grade platform for building AI-powered customer agents. Connect your messaging channels, configure intelligent agents with RAG (Retrieval-Augmented Generation), and let them handle conversations automatically.
Create Your Account
- Go to the AIAgentCore Dashboard
- Click Sign Up and fill in your email, password, and company name
- Your account comes with $5 in free credits to get started
Get Your API Token
- Log in to the Dashboard
- Navigate to Settings in the sidebar
- Copy your API Token from the API section
All API requests require this token in the Authorization header:
curl -H "Authorization: Bearer YOUR_API_TOKEN" \
https://api.aiagentcore.com/api/agents
Create Your First Agent
Via Dashboard
- Navigate to Agents in the sidebar
- Click Create Agent
- Configure:
- Name — A descriptive name (e.g., "Customer Support Bot")
- System Prompt — Instructions for the AI (e.g., "You are a helpful customer support agent for Acme Corp.")
- LLM Provider — Choose OpenAI or Google Gemini
- LLM Model — Select the model (e.g.,
gpt-4o,gemini-2.0-flash)
- Add your LLM API key (or use the server-level key if configured)
- Click Save
Via API
curl -X POST https://api.aiagentcore.com/api/agents \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Customer Support Bot",
"systemPrompt": "You are a helpful customer support agent.",
"llmProvider": "openai",
"llmModel": "gpt-4o"
}'
Connect a Channel
Agents need a channel to receive messages. AIAgentCore supports:
- Webchat Widget — Embed on your website (learn more)
- Chat2Desk — Connect WhatsApp, Telegram, and more via Chat2Desk
Webchat Setup
- Go to Settings > Integrations
- Click Add Integration and select Webchat
- Configure the widget appearance (theme, colors, branding)
- Copy the embed code and add it to your website
Chat2Desk Setup
- Go to Settings > Integrations
- Click Add Integration and select Chat2Desk
- Enter your Chat2Desk API token
- Configure the webhook URL in your Chat2Desk dashboard:
https://api.aiagentcore.com/api/webhook/chat2desk/{integrationId} - Select which channels to connect
Add Knowledge Base (RAG)
Make your agent smarter by uploading documents:
- Go to Agents > Your Agent > Knowledge Base
- Upload documents (PDF, TXT, DOCX, or paste text)
- Documents are automatically chunked, embedded, and indexed
- Your agent will use semantic search to find relevant context for each conversation
What's Next?
- Authentication — API auth flow details and token management
- Webhooks — Receive real-time events from messaging platforms
- Widget Embed — Embed the chat widget on your website
- API Reference — Complete endpoint documentation