Analytics for your websites, and the APIs behind them.
No cookies. IPs are read once for geography, then discarded. One dashboard for page views and server events. A ~7KB tracker and nothing else.
No credit card required. 10,000 events/month free.
See it on real traffic
this is loggerlizard.com's own dashboard, liveTry it yourself
each click is one .log() callEverything you need to read your traffic
Real-time sightings
See traffic as it happens, with the dashboard refreshing every 30 seconds.
Geographic insights
Visitors by country and city. IPs are read once for geography, then discarded.
Traffic sources
Know where visitors come from: referrers, social and search, no cookies involved.
Track your APIs too
Send events from your backend with a secret key. They land in the same dashboard as your page views.
No cookie banners
GDPR compliant by default. No consent popups, because there are no cookies to consent to.
About 7KB, zero dependencies
The tracker will not slow your site down or drag on your Core Web Vitals.
Get started in a minute
Add one script tag and page views track themselves. Reach for the package when you want to send your own events.
<script src="https://api.loggerlizard.com/js/lizard.js" data-api-key="llz_pub_…"></script>
npm install @loggerlizard/lizard import Lizard from '@loggerlizard/lizard'; const liz = new Lizard('llz_pub_…', { autoTrack: true }); // send events from anywhere in your app liz.log('signup', { plan: 'pro' }); liz.log('purchase', { amount: 19 });
<button onclick="window.lizard.log('button_click')">Click me</button>