Apex Lead Gen Text

Ad #30 | Type: TEXT

Active
Ad Preview

Apex Digital — More Leads, Less Cost

Enterprise marketing automation that delivers. Schedule your free strategy session today.

Ad Details
Campaign Apex Lead Generation Drive
Ad Type TEXT
Headline Apex Digital — More Leads, Less Cost
Description Enterprise marketing automation that delivers. Schedule your free strategy session today.
Destination URL https://apexdigital.io/free-session
Weight 80 (Rotation Priority)
Created Dec 20, 2025 3:38 AM
Targeting Settings

No targeting rules - shows to all users

Conversion Tracking Setup
Quick Start Code

Place this code on your conversion/thank-you page (after purchase, signup, etc.)

<script>
fetch('https://adsrvx.test/api/v1/track/conversion', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    ad_id: 30,
    campaign_id: 13,
    conversion_type: 'custom'
  })
});
</script>
<script>
// Track a purchase with monetary value
fetch('https://adsrvx.test/api/v1/track/conversion', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    ad_id: 30,
    campaign_id: 13,
    conversion_type: 'sale',
    conversion_value: 99.99,  // Replace with actual order total
    conversion_data: JSON.stringify({
      order_id: 'ORD-12345',
      product: 'Product Name'
    })
  })
});
</script>

For accurate attribution, store the click UUID when users click your ad, then pass it during conversion tracking.

<!-- Step 1: On your landing page, store the click UUID from the ad -->
<script>
// Get click_uuid from URL parameter (added by serve.js)
const urlParams = new URLSearchParams(window.location.search);
const clickUuid = urlParams.get('click_uuid');

// Store in cookie for 30 days
if (clickUuid) {
  document.cookie = `ad_click_30=${clickUuid}; path=/; max-age=2592000`;
}
</script>

<!-- Step 2: On conversion page, retrieve and send the click UUID -->
<script>
function getCookie(name) {
  const value = `; ${document.cookie}`;
  const parts = value.split(`; ${name}=`);
  if (parts.length === 2) return parts.pop().split(';').shift();
}

const clickUuid = getCookie('ad_click_30');

fetch('https://adsrvx.test/api/v1/track/conversion', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    ad_id: 30,
    campaign_id: 13,
    click_uuid: clickUuid,  // Links conversion to specific click
    conversion_type: 'sale',
    conversion_value: 99.99
  })
});
</script>
Supported Conversion Types
Type Use Case Example
sale E-commerce purchase Product bought, subscription purchased
lead Lead generation Contact form submitted
signup User registration Account created, newsletter subscription
download File download Whitepaper, app download
pageview Specific page visit Pricing page visited
custom Other actions Video watched, form started
Implementation Tips
  • Placement: Add conversion tracking code to your "thank you" or confirmation pages
  • Testing: Use browser developer console to verify the API call is sent successfully
  • Attribution: For best results, use the advanced click tracking method to link conversions to specific clicks
  • Security: All tracking requests are rate-limited and validated server-side
  • Privacy: Only track conversions on your own website with user consent
Performance
CTR 3.00%
CVR 4.17%
Total Impressions 44,000
Total Clicks 1,320
Total Conversions 55