Albacross

Updated by Ole Dallerup

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

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

<script type="text/javascript">
window.analytics.ready(function () {
var reveal = window.AlbacrossReveal && window.AlbacrossReveal.company;

if (!reveal || !reveal.url || analytics.group().traits().website) {
return;
}

analytics.group(null, {
website: reveal.url,
source: "albacross",
name: reveal.name || undefined,
country: reveal.country || undefined,
industry: reveal.linkedin_industry_code ? reveal.linkedin_industry_code.category : undefined,
number_of_employees: reveal.employees ? reveal.employees.from + " - " + reveal.employees.to : undefined,
annual_revenue: reveal.financial_report ? reveal.financial_report.from + " - " + reveal.financial_report.to : undefined
});
});
</script>


How did we do?