🚀 VisualizationCAD.shop

Facebook Pixel API Server

Your Facebook Pixel API is live and ready to track conversions!

GET /api?pixel=1581995692963728&action=test
Test endpoint to verify API is working
POST /capi/lead.php
CAPI endpoint for lead tracking (server-to-server)
GET /thank-you
Thank you page with Facebook Pixel tracking

Quick Tests:

Test API Thank You Page

Your Endpoints:

JavaScript Integration:

// Facebook Pixel tracking
fbq('init', '1581995692963728');
fbq('track', 'Lead', {}, { eventID: eventId });

// CAPI tracking
fetch('https://visualizationcad.shop/capi/lead.php', {
    method: 'POST',
    headers: { 'Content-Type': 'application/json' },
    body: JSON.stringify({
        event_name: 'Lead',
        event_id: eventId,
        event_time: Math.floor(Date.now()/1000),
        event_source_url: window.location.href
    })
});