Peak Finance 728x90
Ad #49 | Type: BANNER
Active
Ad Preview
Dimensions: 728x90
Ad Details
| Campaign | Peak Finance Lead Gen |
| Ad Type | BANNER |
| Headline | Save Thousands on Your Mortgage |
| Description | Refinance now and lower your monthly payments. Free comparison — no obligation. |
| Destination URL | https://peakconversions.com/refinance |
| Weight | 110 (Rotation Priority) |
| Created | Jan 19, 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: 49,
campaign_id: 21,
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: 49,
campaign_id: 21,
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_49=${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_49');
fetch('https://adsrvx.test/api/v1/track/conversion', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
ad_id: 49,
campaign_id: 21,
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
Quick Actions
Performance
CTR
3.00%
CVR
6.03%
Total Impressions
52,005
Total Clicks
1,560
Total Conversions
94