🎯 360AIRO Lead Tracker

Capture Visitor IPs & Leads Automatically

⚡ Quick Start (30 seconds)

Add these two lines to your HTML page and you're done! All visitors will be tracked automatically.

1

Add Configuration

Paste this before the closing </head> tag:

<script> window.AIRO_CONFIG = { apiKey: 'your-api-key', accountId: 'your-account-id' // Endpoint auto-detects from your domain }; </script>
2

Add Tracker Script

Paste this before the closing </body> tag:

<script src="/360airo-tracker.js"></script>
✅ That's it! All visitors landing on your page will be automatically tracked. Their IP addresses, session data, and page views will be saved to your 360AIRO dashboard.

📋 Complete Copy-Paste Code

Here's the complete code block you can paste directly into your HTML page:

<!-- 360AIRO Lead Tracker Configuration --> <script> window.AIRO_CONFIG = { apiKey: 'your-api-key', accountId: 'your-account-id' // Endpoint auto-detects from your domain }; </script> <!-- 360AIRO Tracker Script --> <script src="/360airo-tracker.js"></script>
💡 Pro Tip: Replace your-api-key and your-account-id with your actual values from your 360AIRO dashboard.

📊 What Gets Tracked?

🌐

Visitor IP Address

Automatically captured from all visitors

📱

Session ID

Unique identifier for each visit

🎯

Page Views

Track which pages users visit

⏱️

Timestamps

Know exactly when visitors arrive

💻

Browser Info

User agent and screen resolution

🔗

Referrer Data

Where visitors came from

Detailed Tracking Information:

Data Point Description Saved To File
IP Address Visitor's public IP address ✅ Yes
Session ID Unique session identifier ✅ Yes
Visitor ID Persistent visitor identifier ✅ Yes
Page URL Full URL of visited page ✅ Yes
Page Title Title of visited page ✅ Yes
Referrer Source page (where they came from) ✅ Yes
User Agent Browser and OS information ✅ Yes
Screen Resolution Visitor's screen size ✅ Yes
Timezone Visitor's timezone ✅ Yes
Language Browser language preference ✅ Yes
Timestamp Exact time of visit ✅ Yes

🚀 Advanced Usage

Track Custom Events

Track any custom event on your page:

window.Airo360Tracker.trackEvent('button_clicked', { buttonName: 'Download Now', timestamp: new Date().toISOString() });

Identify a Lead

When you capture a lead's information, send it to 360AIRO:

window.Airo360Tracker.identifyLead({ email: 'john@company.com', name: 'John Doe', company: 'Acme Corp', phone: '+1-555-0123' });

Track Form Submissions

Automatically track form submissions:

<form id="contactForm"> <input type="email" name="email" placeholder="Your email"> <input type="text" name="name" placeholder="Your name"> <button type="submit">Subscribe</button> </form> <script> document.getElementById('contactForm').addEventListener('submit', function(e) { window.Airo360Tracker.trackFormSubmission(this, { source: 'contact_form' }); }); </script>

💾 Data Storage & Privacy

Where is the data saved?

Data Retention

⚠️ Important: Ensure you have proper privacy policy mentioning that you collect visitor IP addresses and tracking data. Always comply with local data protection regulations.

📈 View Your Data

Lead Dashboard

Access your complete lead dashboard at:

Features:

❓ FAQ & Troubleshooting

Q: Will the tracker work on all websites?

A: Yes! The tracker is lightweight and works on any website with a </body> tag. It's compatible with WordPress, Shopify, custom HTML, React, Vue, and more.

Q: Is the tracker script secure?

A: Yes! The script is only 5KB minified, uses HTTPS, and doesn't require any sensitive API keys in the client code.

Q: Can visitors see they're being tracked?

A: The tracking happens in the background. There are no pop-ups or notifications. However, you should always disclose tracking in your privacy policy.

Q: How often is data saved?

A: Data is batched and sent every 30 seconds, or immediately when a form is submitted or lead is identified.

Q: Can I see IPs in real-time?

A: Yes! Visit the dashboard and click "Enrich Leads" to see all captured visitor IPs with their data.

Q: What if a visitor uses a VPN?

A: The tracker captures their exit node IP (the VPN server's IP), which is useful for identifying regions and companies.

✅ Implementation Checklist

1
Copy the configuration code from this guide
2
Paste it into your HTML page (before </head>)
3
Copy the tracker script line
4
Paste it into your HTML page (before </body>)
5
Update your privacy policy (optional but recommended)
6
Test by visiting your website
7
Check the dashboard to see captured leads
🎉 You're all set! Your website is now capturing visitor IPs and lead data automatically.