Complete setup guide for tracking, postbacks, and integrations
Add this script to your landing page to capture clicks, form submissions, and conversions.
<script src="https://vortextrk.com/tf.js" data-vtx="YOUR_TRACKING_ID"></script>
</body> tag on every landing page.Campaigns group your ad spend and conversions across platforms.
Tracking links let you measure every click from ad to conversion.
Link format:
https://vortextrk.com/api/r/LINK_ID?sub1=...
Send qualified conversions to Meta via the Conversions API so your ad sets optimise for real leads, not spam.
70).Push conversion events to GA4 via the Measurement Protocol for server-side attribution.
G-XXXXXXXXXX).Quality scoring lets you separate real leads from bots and spam before they reach your CRM or ad platform.
HIGH
70 -- 100
MEDIUM
45 -- 69
LOW
25 -- 44
SPAM
< 25
Go to Bot Rules to add IP blacklists and user-agent block patterns.
Postback rules control which conversions are sent to ad platforms and under what conditions.
Use the REST API to send events, pull data, or build custom integrations.
| Method | Endpoint |
|---|---|
| POST | /api/events/track |
| POST | /api/track/conversion |
| GET | /api/contacts |
| GET | /api/campaigns |
| GET | /api/dashboard |
All authenticated endpoints require a session cookie or an X-API-Key header. The /api/events/track endpoint is public and does not require authentication.
curl -X POST https://vortextrk.com/api/events/track \
-H "Content-Type: application/json" \
-d '{
"eventName": "formsubmit",
"contactEmail": "user@example.com",
"contactPhone": "+972501234567",
"contactName": "John Doe",
"pageUrl": "https://example.com/landing",
"utmSource": "facebook",
"utmMedium": "cpc",
"utmCampaign": "summer_sale"
}'