function Page() {
const categories = ["Measurement & MMPs", "E-Commerce", "CDPs & Data", "Verification"];
const integrations = [
{
name: "AppsFlyer", cat: "Measurement & MMPs", logo: "appsflyer.png", desc: "Sync mobile app installs and post-install events directly into Auctera's DSP.",
longDesc: "AppsFlyer is the global attribution leader. By integrating Auctera with AppsFlyer, you enable deterministic attribution for every mobile ad impression and click. This creates a closed-loop measurement system that automatically syncs post-install conversion events back to our DSP for real-time bid optimization.",
features: ["Real-time postback syncing", "Deterministic mobile attribution", "Automated ROAS bid optimization"]
},
{
name: "Adjust", cat: "Measurement & MMPs", logo: "adjust.png", desc: "Send deterministic attribution data to optimize ROAS across channels.",
longDesc: "Adjust empowers mobile marketers with analytics and fraud prevention. The Auctera + Adjust integration allows you to instantly map in-app events (like purchases or registrations) directly to your Auctera programmatic campaigns, ensuring your spend is always allocated toward the highest LTV cohorts.",
features: ["In-app event mapping", "Cohort LTV tracking", "Cross-channel deduplication"]
},
{
name: "Shopify", cat: "E-Commerce", logo: "shopify.png", desc: "Import product feeds dynamically for retargeting and performance ads.",
longDesc: "Shopify powers millions of e-commerce storefronts. Our native Shopify integration allows you to sync your entire product catalog directly into Auctera's Dynamic Creative Engine. When a user abandons a cart, Auctera instantly builds and serves a personalized retargeting ad featuring the exact product they left behind.",
features: ["Live inventory sync", "Dynamic retargeting creative", "Purchase event attribution"]
},
{
name: "WooCommerce", cat: "E-Commerce", logo: "woo.png", desc: "Connect your store to track purchases and build custom audiences.",
longDesc: "Our WooCommerce plugin securely connects your open-source storefront to the Auctera pixel network without requiring manual code injection. Automatically generate custom 'lookalike' audiences based on your highest-spending customer segments.",
features: ["One-click pixel installation", "Lookalike audience generation", "First-party data syncing"]
},
{
name: "Segment", cat: "CDPs & Data", logo: "segment.png", desc: "Stream customer events to Auctera without adding new tracking tags.",
longDesc: "Segment by Twilio is the leading Customer Data Platform. Instead of adding another tracking script to your site, simply flip the switch in your Segment dashboard to start securely streaming identity and event data to Auctera. Use this data to build highly targeted programmatic segments.",
features: ["Server-side event tracking", "Zero-code implementation", "Cross-device identity resolution"]
},
{
name: "mParticle", cat: "CDPs & Data", logo: "mparticle.png", desc: "Unify your audience data to orchestrate omnichannel campaigns.",
longDesc: "mParticle helps brands unify their data structure. The Auctera integration ingests mParticle audience cohorts in real-time. If a user enters a 'Churn Risk' cohort in mParticle, Auctera can immediately trigger a retention-focused display campaign across the open web.",
features: ["Real-time audience routing", "Retention campaign triggering", "Privacy-safe data transfer"]
},
{
name: "DoubleVerify", cat: "Verification", logo: "dv.png", desc: "Layer third-party brand safety and IVT filtering on top of Auctera.",
longDesc: "DoubleVerify is the industry standard for media authentication. While Auctera has robust internal fraud prevention, this integration allows enterprise brands to layer DoubleVerify's pre-bid avoidance segments and post-bid measurement directly into their Auctera campaigns for independent verification.",
features: ["Pre-bid IVT avoidance", "Brand safety content categories", "Independent viewability measurement"]
},
{
name: "Integral Ad Science", cat: "Verification", logo: "ias.png", desc: "Ensure viewability and compliance across all programmatic buys.",
longDesc: "Integral Ad Science (IAS) ensures your ads are seen by real people in safe environments. Seamlessly apply IAS Quality Sync targeting to your Auctera DSP campaigns to automatically filter out high-risk inventory and guarantee minimum viewability thresholds.",
features: ["Quality Sync targeting", "Contextual avoidance", "MFA (Made for Advertising) filtering"]
}
];
const [activeCat, setActiveCat] = React.useState("All");
const filtered = activeCat === "All" ? integrations : integrations.filter(i => i.cat === activeCat);
const [selected, setSelected] = React.useState(null);
useReveal();
return (
<>
Auctera integrates natively with your existing measurement, data, and commerce platforms so you can start optimizing performance immediately without a massive engineering lift. {item.desc}
Connect your stack.
{item.name}
{selected.longDesc}