Know Your Users. Grow Your SaaS.
Monitor every aspect of your application in real-time. Track user journeys, capture events, and make data-driven decisions with our comprehensive analytics platform.
Built for modern applications
Powerful event tracking and analytics that scales with your application. Deploy in minutes and start monitoring your key metrics instantly.
Real-Time Event Tracking
Monitor user interactions, conversions, and system events as they happen. Get instant visibility into your application's performance.
Cross-Platform Analytics
Track user behavior across web, mobile, and desktop platforms. Understand how users interact with every part of your application.
Custom Event Monitoring
Track any event that matters to your business. From sign-ups to feature usage, get insights into every aspect of your application.
Performance Metrics
Monitor application performance, load times, and user experience metrics. Keep your application running at peak efficiency.
Real-time event monitoring
Get instant Discord notifications for critical events, conversion milestones, and user activities. Stay on top of your application's performance 24/7.
Direct Messages
You
@your_account
Analyzr
Copy. Paste. Deploy.
Simple as that.
Get started quickly with ready-to-use code examples. Copy, paste and customize to integrate event tracking in minutes.
Setup
1<script
2 defer
3 data-domain="YOUR_DOMAIN"
4 src="https://getanalyzr.vercel.app/tracking-script.js"
5>
6</script>
Events
1const axios = require('axios');
2
3const API_KEY = "YOUR_API_KEY";
4const url = "https://getanalyzr.vercel.app/api/events";
5const headers = {
6 "Content-Type": "application/json",
7 "Authorization": `Bearer ${API_KEY}`
8};
9
10const eventData = {
11 name: "", // required - event name
12 domain: "", // required - your website domain
13 description: "", // required - event description
14 emoji: "🔔", // optional - emoji for Discord notification
15 fields: [ // optional - additional fields for Discord notification
16 {
17 name: "Field Name",
18 value: "Field Value",
19 inline: true // optional - display fields in same line
20 }
21 ]
22};
23
24const sendRequest = async () => {
25 try {
26 const response = await axios.post(url, eventData, { headers });
27 console.log("Event sent successfully", response.data);
28 } catch (error) {
29 console.error("Error:", error.response ? error.response.data : error.message);
30 }
31};
32
33sendRequest();
Frequently Asked Questions
Get answers to frequently asked questions about our analytics platform. Learn how Analyzr can help you track and understand your website's performance while keeping your data secure.