Quick Start
Add privacy-first analytics to your website in under 2 minutes.
< 1 KB
Script size (gzipped)
Zero
Cookies used
~1 min
Time to first data
1. Create an account
Go to app.teeny-tiny.tools and sign up with your email, Google, or GitHub.
2. Add a site
From the dashboard, click Analytics → Add site. Enter your domain (e.g., example.com).
You'll receive a tracking snippet and an API key. Save the API key— it's only shown once.
3. Install the snippet
Paste the tracking snippet into your website's <head> tag:
<script defer
src="https://1.analytics.teeny-tiny.tools/t.js"
data-site="YOUR_SITE_ID">
</script>That's it. Pageviews start flowing within seconds.
4. View your stats
Return to the dashboard to see pageviews, unique visitors, top pages, referrers, countries, and devices. Data appears within 1-2 minutes.
What gets collected
| Field | Description |
|---|---|
| Page URL | Path, query string, and hash |
| Referrer | Where the visitor came from |
| Screen & viewport | Display and browser window dimensions |
| Language | Browser language (e.g., en-US) |
| Timezone | Visitor timezone (e.g., America/New_York) |
| Duration | Active time on page (excluding hidden tab) |
| Unique | Whether the visitor is likely new |
| Device | Mobile/desktop, browser brand |
What is NOT collected
✓No cookies
✓No localStorage
✓No IP storage
✓No fingerprinting
✓No PII
✓GDPR-friendly
Script attributes
| Attribute | Required | Description |
|---|---|---|
data-site | Yes | Your site ID (UUID) |
data-ignore-dnt | No | Track even when Do Not Track is enabled |
Example with DNT override:
<script defer
src="https://1.analytics.teeny-tiny.tools/t.js"
data-site="YOUR_SITE_ID"
data-ignore-dnt>
</script>