st4ts

full-tracking site analytics

new site

✓ site created

paste into your site's <head>

bookmark your dashboard

your sites

st4ts /
pageviews
—
unique visitors
—
avg session
—
bounce rate
—
pageviews over time
top pages
referrers
countries
recent visitors
no click data for this page yet
click a visitor in the visitors tab to see their journey
custom events

tracking snippet

add this to the <head> of every page you want to track.

javascript api

// identify a logged-in user st4ts.identify('user@email.com'); // track a custom event st4ts.track('signup', { plan: 'pro' }); st4ts.track('purchase', { amount: 49, currency: 'USD' });

funnel registration

define funnels in your code — they appear in the funnels tab automatically and update on redeploy.

// steps can be url strings (pageview) or {type, value} objects st4ts.funnel('signup flow', [ '/pricing', { type: 'event', value: 'plan_select' }, '/signup', { type: 'event', value: 'signup' }, ]); // pageview steps match if the url contains the value st4ts.funnel('onboarding', [ { type: 'event', value: 'signup' }, '/dashboard', { type: 'event', value: 'first_action' }, ]);
sessions
top pages