Snitcher

Updated by Ole Dallerup

Dreamdata comes with built-in functionality to collect intent data for all your visitors. However, using Snitcher, you should improve the data quality and coverage by parsing the Snitcher intent data to Dreamdata. When Dreamdata and Snitcher intent data give a result, Snitcher data will be used.

The script below requires you to set up Dreamdata tracking and the Snitcher script. You can add the script to your website's header or load it through Google Tag Manager.

<script type="text/javascript">
function dreamdataCallback(identification) {
if (!identification || identification.type !== "business" || !window.analytics || analytics.group().traits().website)
return;

var reveal = identification.company;
analytics.group(null, {
website: reveal.domain,
source: "snitcher",
name: reveal.name || undefined,
industry: reveal.industry || undefined,
number_of_employees: reveal.employee_range || undefined,
annual_revenue: reveal.revenue.amount || undefined,
});
}

window.SpotterSettings = {
token: "<YOUR-SNITCHER-API-TOKEN>",
callback: dreamdataCallback,
};
</script>


How did we do?