Skip to main content
If your platform isn’t listed, it’s likely compatible with our single-line embed code. Please reach out to document additional integrations. Supported integrations include:
  • Carrd
  • Discourse
  • Ember.js
  • Framer
  • Ghost
  • Inertia.js
  • Mintlify
  • Vue.js
  • Webflow

General Integration

In most cases you can get your Axo embed script and paste it into the <head> section of your website, or include it in your CMS of choice:
  1. Go to the menu on the top right and navigate to Settings
  2. Click Sites.
  3. Select the site you wish to integrate, or create one if you haven’t already.
  4. Go to Install, then copy the embed script, and paste it into your website.
Your Embed Script looks like this:
<script src="https://cdn.axoanalytics.com/scripts/YOUR-SITE-ID.js" defer></script>
You have to replace YOUR-SITE-ID with your site identifier from the site settings.

Integration without Script Tag

In some cases you cannot include your embed code as a script tag, but have to include it via Javascript. In those cases the embed code should look like this:
const axoScript = document.createElement('script');
axoScript.src = 'https://cdn.axoanalytics.com/scripts/YOUR-SITE-ID.js';
axoScript.defer = true;
document.head.appendChild(axoScript);
You have to replace YOUR-SITE-ID with your site identifier from the site settings.