Getting started/Quickstart

Quickstart

Go from an empty account to live visitor data in about five minutes. Create a workspace, add your site, paste one script tag, and watch the first events arrive.

1. Create your account

Sign up at analyse.net with your email and a password, or use Google. Verify your email and you land in the onboarding flow, which creates your first workspace for you.

Your first workspace starts a 3 day free trial. No card needed.

2. Add your site

During onboarding, or later via Dashboard → Add site, enter your site's domain and a name. Analyse generates a public key for it. The key looks like pk_live_... and is safe to expose in your HTML, it can only be used to send events for your domain.

3. Install the tracking snippet

Paste this before the closing </head> tag on every page, with your own public key:

html
<script
  src="https://cdn.jsdelivr.net/npm/@analyse.net/sdk/dist/index.global.js"
  data-public-key="pk_live_your_key"
  defer
></script>

That is the whole install. Pageviews, sessions, time on page, and scroll depth are tracked automatically. If you use React, Next.js, npm, or WordPress, see the installation guides for those setups.

4. Verify data is coming in

Open your site's overview in the dashboard and load a page on your website. The overview refreshes as events arrive, so you should see your own visit within a few seconds.

Tip

Nothing showing up? Check that the script tag is present in the page source, the public key matches the one in Site settings → Tracking, and no ad blocker is running in the browser you are testing with.

Where to go next