Your Account / Settings
JG

Settings

Manage your account, properties, and integrations

Install Tracker
Add the MOSZAIC tracker to your site. Choose the method that matches your stack.
Tracker verified Last event received 2 min ago from thedailybrief.com
Script Tag
NPM Package
WordPress
Next.js
<!-- Paste inside your <head> -->
<script
  src="https://cdn.moszaic.io/tracker.js"
  data-property-id="prop_xK9mL2nQ"
  data-write-key="wk_live_••••••••••••••••"
  async
></script>
# Install
npm install @moszaic/tracker

// In your app entry point
import { MoszaicTracker } from '@moszaic/tracker';

MoszaicTracker.init({
  propertyId: 'prop_xK9mL2nQ',
  writeKey:   'wk_live_••••••••••••••••',
  autoTrack:  true,
});
# 1. Plugins → Add New → Search "MOSZAIC Tracker" → Install & Activate

# 2. Go to: Settings → MOSZAIC Tracker

# 3. Enter your credentials and save:
Property ID  prop_xK9mL2nQ
Write Key    wk_live_••••••••••••••••
// app/layout.tsx  (App Router)
import Script from 'next/script';

export default function RootLayout({ children }) {
  return (
    <html>
      <body>
        {children}
        <Script
          src="https://cdn.moszaic.io/tracker.js"
          data-property-id="prop_xK9mL2nQ"
          data-write-key="wk_live_••••••••••••••••"
          strategy="afterInteractive"
        />
      </body>
    </html>
  );
}