Send your first event in under five minutes.

1. Install the snippet

Add the tracking snippet just before </head> on every page you want to measure.

<script async src="https://cdn.marshway.example/mw.js" data-key="YOUR_KEY"></script>

2. Send an event

mw.track('signup_completed', { plan: 'team', seats: 5 });

Tip: event names are case-sensitive. Use snake_case and keep them stable — renaming an event starts a new series.

3. Build your first report

  1. Open Reports → New.
  2. Pick the event signup_completed.
  3. Group by plan and save.
MethodDescription
mw.track(name, props)Record an event
mw.identify(id, traits)Attach traits to a user
mw.reset()Clear the current identity

Screenshots