Loading your account…
Track real sales from creators using Analytx with a simple script integration.
Analytx helps you track which creators actually drive revenue. You do not need complex backend integrations.
Creators share referral links like:
https://yourbrand.com/product?ref=CREATOR123
Analytx automatically captures this referral and attributes the sale when a purchase is completed.
Add the Analytx script to your website (preferably in the global layout or <head> section):
<script src="https://tryanalytx.com/tracker.js"
data-api-key="YOUR_API_KEY">
</script>Replace YOUR_API_KEY with your API key from the dashboard.
Call Analytx.trackSale() only after a successful purchase (on your order confirmation / thank-you page).
<script>
Analytx.trackSale({
skuId: "SKU-001",
salePrice: 499
});
</script>Required fields:
1. Creator shares referral link
2. User visits your site → Analytx stores the referral automatically
3. User completes purchase
4. You call Analytx.trackSale()
5. Analytx attributes the sale to the correct creator and campaign
Analytx.trackSale() after a successful paymentskuId and salePriceShopify / WooCommerce / Custom apps all follow the same rule:
// Call this on order success page
Analytx.trackSale({
skuId: order.sku,
salePrice: order.total
});For support, contact jems.analytx@gmail.com