Quick Start
Add privacy-respecting analytics to your website in under 2 minutes.
< 1 KB
Script size (gzipped)
Zero
Cookies used
~2 min
Time to first data
1. Create an account
Go to analytics.teeny-tiny.tools and sign up with your email or Google.
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://t.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
IP address and User-Agent are kept short-term for security and abuse prevention. See the privacy policy for retention details and your GDPR rights.
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://t.analytics.teeny-tiny.tools/t.js"
data-site="YOUR_SITE_ID"
data-ignore-dnt>
</script>