Kopimore + Webhooks (Custom)
Send identified visitor data to any endpoint via HTTP POST. Build custom integrations with your internal tools, CRMs, or any platform that accepts webhook payloads.
What You Can Do
HTTP POST Delivery
Kopimore sends a JSON payload to your configured endpoint for every identified visitor matching your segment filters — in real time.
Authentication Support
Add custom headers including Bearer tokens, API keys, or Basic Auth to secure your webhook endpoint.
Payload Customization
Choose exactly which Kopimore fields are included in the payload — send everything or just the fields your endpoint needs.
Retry Logic
Failed deliveries are automatically retried with exponential backoff. Delivery logs show success/failure status for every event.
Multiple Endpoints
Configure different webhooks for different segments — hot leads to your CRM, all visitors to a logging service, homeowners to a separate pipeline.
Delivery Logs
Every webhook delivery is logged in your Kopimore dashboard — timestamp, endpoint, HTTP status, and response preview.
Standard Payload Shape
{
"visitor_id": "vis_8a7f3c9b",
"first_name": "Sarah",
"last_name": "Mitchell",
"email": "sarah.m@email.com",
"phone": "(614) 555-0182",
"address": "4217 Elmwood Dr",
"city": "Columbus",
"state": "OH",
"zip": "43214",
"household_income": "$85,000–$100,000",
"homeowner": true,
"home_value": "$320,000",
"age_range": "35–44",
"intent_score": 84,
"pages_viewed": ["/services/roofing", "/pricing", "/contact"],
"visit_count": 3,
"session_duration_seconds": 247,
"first_visit": "2024-03-14T09:12:00Z",
"last_visit": "2024-03-16T14:28:00Z",
"traffic_source": "google",
"utm_source": "google",
"utm_medium": "cpc",
"utm_campaign": "roofing_spring_2024",
"segment": "homeowners_local_high_intent"
}
Common Use Cases
Custom CRM Integration
POST visitor data directly to your in-house CRM or lead management system via its REST API.
Data Warehouse
Log all identified visitors to a data warehouse endpoint for BI reporting and cohort analysis.
SMS Gateway
Forward high-intent visitor alerts to a Twilio or Vonage endpoint for immediate rep SMS notifications.
Internal Tools
Trigger internal business logic — assign tickets, update records, notify on-call staff — with a webhook into your own infrastructure.