Workflow automations and AI agents
BotChap connects your website chat widget directly to n8n via a Chat Trigger URL or Webhook URL. You build the conversation logic in n8n — BotChap handles the branded widget and visitor experience on the front end.
Use this integration when your chatbot needs business logic, CRM actions, lead routing, booking, notifications, or AI agent orchestration inside n8n. It works with both n8n Chat Trigger nodes and standard Webhook nodes.
BotChap sends a POST request with this exact body:
{
"chatInput": "<visitor message>",
"sessionId": "<session identifier>",
"chatbotId": "<your widget ID>",
"metadata": { "source": "widget" }
}POST https://your-n8n-instance.com/webhook/abc123
Content-Type: application/json
{
"chatInput": "I want to book a demo",
"sessionId": "bc_7f3a9d",
"chatbotId": "456a6dd3-3cf2-461f-9a69-f66148b2cda7",
"metadata": { "source": "widget" }
}{
"output": "Sure! What day works best for you?"
}Create a free widget, configure the integration, and embed it on your site in minutes.