This guide walks you through creating a Saytics account, installing the JavaScript SDK, sending your first event, and confirming that the data appears in your dashboard. The whole process takes about five minutes.Documentation Index
Fetch the complete documentation index at: https://docs.saytics.com/llms.txt
Use this file to discover all available pages before exploring further.
Create your account
Go to app.saytics.com/signup and create a workspace. A workspace is the container for all your events, users, and dashboards. After signup, you land directly on your dashboard — no extra setup required.
Get your API key
Navigate to Settings → API Keys and copy your write key. You use this key to authenticate events sent from your app.
Initialize Saytics
Import and initialize the SDK with your write key. Call
init() once, as early as possible in your application — typically at the top level of your entry file.Track your first event
Call
Saytics.track() with an event name and any properties you want to attach. Property values can be strings, numbers, or booleans.View in dashboard
Open app.saytics.com, go to Events → Live feed, and you’ll see your event appear within a few seconds. Click any event to inspect its properties.
Next steps
JavaScript SDK
Explore all SDK methods and configuration options.
Identify users
Link events to specific users with
identify().Events reference
Learn how events are structured and queried.