Getting started
Sign up, create a project, copy its key and see your first event, in about five minutes.
Create an account
Go to app.analytics.atrix.dev/sign-up and sign up with your email. We send a verification link; you can keep going while it arrives.
Name your organisation and create a project
The console walks you through two short forms:
- Organisation. Billing, members and tokens belong to it. Seats are unlimited on every plan.
- Project. One product, for example "Acme web + mobile". Pick its region and a reporting timezone.
The region is fixed
A project's region cannot be changed later: that is what makes residency real. EU is live today; UAE, US and Pakistan show as coming soon. See Data residency.
Copy the key
The project's Install page shows one public key per environment: production, preview and
development. Use the development key while you build, so test traffic never lands in production numbers.
atx_pk_eu_development_…Send your first event
npm i @atrix.dev/analytics-webimport * as atrix from "@atrix.dev/analytics-web";
atrix.init("atx_pk_eu_development_XXXXXXXXXXXXXXXXXXXXXX");
atrix.track("signed_up", { plan: "free" });Pageviews are recorded automatically, including single-page-app navigations.
See it arrive
Open Catalog → Live in the console: events show up within seconds. Then open Insights → Trends, pick
signed_up, and switch the environment selector to development.
Pre-release packages
The SDKs are versioned 0.1.0 and are published to npm, PyPI and the Go module proxy with the public launch.
Until then, ask us for early access and we will share the packages directly.
Next steps
- Identify your users when they sign in, so their anonymous history joins their account.
- Pick the guide for your platform under SDKs.
- Turn on session replay, or create your first feature flag.
- Connect Claude Code over MCP and ask questions about the data you just sent.