Meta Pixel + Conversions API
Server-side Purchase, Subscribe and Lead events with automatic deduplication against the browser Pixel. Hashed PII, fbc/fbp passthrough, EMQ 9+ out of the box.
TikTok Events API v1.3
Trial-link clicks and conversions posted to TikTok Events API with ttclid and hashed identifiers. Custom events for tips, PPV and rebills.
Snapchat CAPI
Snap Pixel plus server-side Snap Conversions API. Hashed email and IP, sc_click_id propagation, dedup with event_id.
Google & GA4
Server-side GA4 measurement protocol events for teams running Google Ads alongside Meta.
Trial-link revenue
ROAS by creator
Sub-affiliate tracking
Attribution stack integrations
Consent-mode ready
await fetch("https://app.maloumapi.com/api/ads/meta/events", {
method: "POST",
headers: { "Authorization": "Bearer sk_live_...", "Content-Type": "application/json" },
body: JSON.stringify({
pixel_id: "1234567890",
event: {
event_name: "Purchase",
event_time: Math.floor(Date.now() / 1000),
event_id: "maloum_sub_abc123",
user_data: { em: ["<sha256(email)>"], fbc: "fb.1.1699.abc", fbp: "fb.1.1699.987" },
custom_data: { currency: "USD", value: 24.99 },
},
}),
});await fetch("https://app.maloumapi.com/api/ads/tiktok/events", {
method: "POST",
headers: { "Authorization": "Bearer sk_live_...", "Content-Type": "application/json" },
body: JSON.stringify({
pixel_code: "C4XXXXXXXXXXXXX",
event: "CompletePayment",
event_id: "maloum_sub_abc123",
context: { user: { email: "<sha256(email)>" }, ad: { callback: "<ttclid>" } },
properties: { currency: "USD", value: 24.99 },
}),
});Snap CAPI, GA4 Measurement Protocol, Reddit and Pinterest CAPI use the same shape - see the docs for full payloads.