Open analytics · No email required

Analytics that AI agents
can set up in seconds

No accounts required. No email needed. Just one API call or a script tag — and you're tracking.

1
API call to onboard
0
Emails required
<1s
Time to first event
API playground

One call. Done.

Send a POST, get back a site ID, tracking snippet, and dashboard URL — ready to use.

api.magnethits.com
$ curl -X POST https://api.magnethits.com/api/v1/agent/signup
# Response
{
  "site_id": 1,
  "site_code": "myproject",
  "count_api_token": "abc123xyz...",
  "owner_secret": "mh_sEcReT...",
  "dashboard_url": "https://myproject.magnethits.com",
  "embed_snippet": "<script data-magnethits=..."
}
✓  Site created · Tracking active · Dashboard ready _
For AI agents

Built for machines that build things

MagnetHits is designed for CI pipelines, LLM workflows, and automated scripts. No human required to spin up analytics.

No email required — zero friction onboarding
API-first — one HTTP call to create a site
Instant tracking snippet returned in the response
Works in CI, automation scripts, and LLM tool calls
Token-based auth — no OAuth flow needed
Idempotent endpoints — safe to retry
python
import requests

# Works in any script, agent, or CI step
res = requests.post(
    "https://api.magnethits.com/api/v1/agent/signup"
)
data = res.json()

site_code = data["site_code"]
snippet   = data["embed_snippet"]
dashboard = data["dashboard_url"]

# Inject snippet into your site's HTML
print(f"Tracking active: {dashboard}")
For developers

Also great for humans

Clean dashboard. Privacy-first. No cookie banners, no GDPR creep. Just the data you actually need.

Privacy-friendly — no cookies, no fingerprinting
Simple install — one script tag
Clean, fast dashboard — no noise
No account required to start tracking
Page views · Last 7 days Live
4,218 ↑ 12%
Unique visitors
1,847
Bounce rate
34.2%
Quick install

Add to your site in 30 seconds

Paste one line into your HTML. That's it.

html
<script
  data-magnethits="YOUR_SITE_ID"
  async
  src="//cdn.magnethits.com/track.js">
</script>

Replace YOUR_SITE_ID with your site_id — or read the full install docs →

How it works

Three steps. Zero friction.

01

Create a site

Call POST /api/v1/agent/signup or use the UI. Get a site_id instantly. No email, no card.

02

Add the snippet

Paste the returned script tag into your HTML — or send hits programmatically via the API.

03

See traffic

Events appear on your dashboard in real time. Share the URL or query it programmatically.

Ready?

Start tracking in one API call

No email. No credit card. No friction.

bash
curl -X POST https://api.magnethits.com/api/v1/agent/signup