Blast Q1 Brand 728x90

Ad #47 | Type: BANNER

Active
Ad Preview
Blast Q1 Brand 728x90

Dimensions: 728x90

Ad Details
Campaign BlastMedia Q1 Display Run
Ad Type BANNER
Headline Trusted by 3,000+ Advertisers
Description BlastMedia connects brands with audiences that convert. See our case studies.
Destination URL https://blastmedia.net
Weight 100 (Rotation Priority)
Created Jan 9, 2026 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: 47,
    campaign_id: 20,
    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: 47,
    campaign_id: 20,
    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_47=${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_47');

fetch('https://adsrvx.test/api/v1/track/conversion', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    ad_id: 47,
    campaign_id: 20,
    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 0.50%
CVR 0.00%
Total Impressions 550,003
Total Clicks 2,750
Total Conversions 0