You need a Cano Analytics account to follow this guide. If you don’t have one yet, sign up for free at app.canoanalytics.io. No credit card required.
1
Create a Workspace
A workspace is the top-level container for all your data, team members, and dashboards in Cano. When you log in for the first time, Cano prompts you to create one automatically.
- Log in to app.canoanalytics.io.
- On the Welcome screen, enter a workspace name — typically your company or project name (e.g.
Acme Corp). - Select your industry and team size, then click Create Workspace.
2
Get Your API Key
Every request to Cano — whether from an SDK or a direct API call — is authenticated with a workspace API key.
- In the left sidebar, click Settings.
- Navigate to the API Keys tab.
- Click Generate New Key, give it a descriptive name (e.g.
Production Web App), and click Create. - Copy the key immediately — Cano only shows it once.
3
Install the SDK
Cano publishes official SDKs for JavaScript/TypeScript and Python. Choose the one that matches your stack and install it using your package manager.
4
Initialize and Track Your First Event
With the SDK installed, initialize the Cano client using your API key and call When the call succeeds, the SDK returns a confirmation object:
track() to send your first event. Replace YOUR_API_KEY with the key you copied in Step 2.Expected Response
5
View the Event in Cano
Your event appears in the Cano UI within seconds of being sent.
- In the left sidebar, click Events.
- You’ll see the Live Events Feed — a real-time stream of all incoming events.
- Find
user_signed_upin the list. Click it to expand the full event payload and confirm your properties (plan,source) are attached correctly.
The Live Events Feed shows events from the last 24 hours by default. Use the date picker in the top-right corner to extend the range.
6
Create Your First Dashboard
Now that events are flowing in, visualize them on a dashboard.
- In the left sidebar, click Dashboards, then click New Dashboard.
- Give your dashboard a name (e.g.
Sign-Up Funnel) and click Create. - Click Add Chart, select
user_signed_upas the event, and choose Line Chart as the chart type. - Click Save Chart — your first chart appears on the dashboard.