Skip to main content

Bot Detection Tool

Purpose: Core traffic validation and bot detection service

Status: Active and required for all use cases

Integration: Single script tag with advanced configuration options

⚙️ Setup & Configuration

Basic Implementation

<script 
async
src="https://api.trustedaccounts.org/js-sdk.js"
onload="new TrustedTraffic({publishableKey:'YOUR_PUBLISHABLE_KEY'}).init()">
</script>

Real-Time Metrics

  • Current Bot/Human Ratio: Live traffic breakdown
  • Anomaly Detection: Unusual traffic spikes
  • Uptime: Service availability

🚨 Troubleshooting

Common Issues

  • Script Not Loading: Check network connectivity and ad blockers
  • No Data: Verify PUBLISHABLE_KEY and wait 2-3 minutes
  • High False Positives: Adjust sensitivity thresholds
  • Performance Issues: Check for script conflicts

Health Checks

// Check service health
const health = window.trustedTraffic.getHealth();
console.log('Service Health:', health);

// Check connection status
const status = window.trustedTraffic.getStatus();
console.log('Connection Status:', status);

Pro Tip: Start with medium sensitivity and adjust based on your traffic patterns. Use the test console to validate your configuration before going live.