Skip to main content

Documentation

Everything you need to integrate and use our AI Agents

Webhook Integration

All agents expose webhook endpoints for easy integration with your systems.

Authentication

webhook-example.sh
1curl -X POST https://your-n8n.com/webhook/lead-capture \
2  -H "Content-Type: application/json" \
3  -H "X-Webhook-Secret: your_secret_key" \
4  -d '{"email": "user@example.com"}'

Sample Payload

payload.json
1{
2  "email": "john@example.com",
3  "name": "John Doe",
4  "company": "Acme Inc",
5  "source": "website",
6  "metadata": {
7    "page": "/agents/lead-gen",
8    "timestamp": "2024-01-15T10:30:00Z"
9  }
10}