Learn how to build, deploy, and manage your AI-powered chat agents
Get your chat agent up and running in minutes
Set up your first chat agent with custom prompts and personality
Use the visual editor to create conversation flows
Embed your chat agent on any website with our SDK
Learn how to create and configure intelligent chat agents
Design complex conversation flows with our drag-and-drop editor
Connect your chat agents to external databases and APIs
Embed chat agents on your website with our JavaScript SDK
Complete API documentation for developers
Step-by-step guides and real-world examples
Direct API endpoints for each agent - perfect for external website integration
Each agent now gets its own API endpoint that external websites can use directly!
Send a message to a specific agent
{
"message": "Hello, I need help with pricing",
"conversation_id": "optional",
"user_context": {
"email": "customer@example.com",
"page": "/pricing"
}
}const response = await fetch('https://brainstorm.quantaops.com/api/agents/YOUR_AGENT_ID/chat', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
message: "Customer needs help",
user_context: { source: "website" }
})
});
const data = await response.json();
console.log('Agent response:', data.response);