Skip to main content

Webhooks & n8n Automation Bridge

Velox GTM outputs standardized JSON payloads designed for immediate ingestion by n8n, Zapier, or custom FastAPI/Node.js webhooks.


Sample Payload Output

When an inbound lead is processed:

{
"event": "gtm.lead.scored",
"timestamp": "2026-08-01T12:00:00Z",
"lead": {
"prospect_name": "Sarah Jenkins",
"company": "ApexLogistics AI",
"icp_score": 100,
"icp_tier": "Tier 1 (High Priority / Immediate Ops Booking)"
},
"actions": [
"provision_notion_vault",
"generate_google_doc_proposal",
"send_slack_alert"
]
}

Connecting with n8n

  1. In n8n, create a Webhook Trigger node (POST method).
  2. Copy the webhook URL into your .env:
    N8N_WEBHOOK_URL="https://n8n.yourcompany.com/webhook/velox-lead"
  3. When velox --demo or engine.score_lead() runs, Tier 1 leads automatically dispatch payloads to your n8n pipeline.