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
- Open Reports → New.
- Pick the event
signup_completed. - Group by
planand save.
| Method | Description |
|---|---|
mw.track(name, props) | Record an event |
mw.identify(id, traits) | Attach traits to a user |
mw.reset() | Clear the current identity |



