Noxtica Documentation
Welcome to the Noxtica documentation. Noxtica is a browser fingerprinting and bot detection platform that helps you identify and protect against fraudulent traffic.
What is Noxtica?
Noxtica collects browser fingerprints—unique signals from each visitor’s browser and device—and analyzes them to detect bots, automation tools, and suspicious behavior.
Key Capabilities
- Browser Fingerprinting: Collect canvas, WebGL, audio, fonts, and many other signals that uniquely identify a browser
- Bot Detection: Identify headless browsers, automation frameworks, and browser spoofing
- Risk Scoring: Get a 0-100 risk score with confidence levels and human-readable risk levels
- Real-time API: Look up device data from your backend with sub-100ms latency
- Multi-tenant: Manage multiple sites and domains from a single account
Platform Components
| Component | Description |
|---|---|
| Collector SDK | JavaScript library embedded in your website |
| Collector API | Cloudflare Worker that processes fingerprints at the edge |
| Backoffice | Admin dashboard for analytics, API keys, and configuration |
| Server API | RESTful API for backend device lookups |
Quick Start
1. Get Your Site Key
After signing up, log into the Backoffice and add your domain. You’ll receive a Site Key (pk_prod_...).
2. Add the Collector
Embed the collector on your website:
<script
src="https://collect.noxtica.com/collector/noxtica-collector.js"
data-site-key="pk_prod_your_site_key_here"
data-auto-init
data-auto-collect
async
></script>
3. Receive Risk Scores
The collector returns risk assessments in real-time:
document.addEventListener('noxtica:collected', function(e) {
console.log('Risk Score:', e.detail.score);
console.log('Risk Level:', e.detail.risk_level);
console.log('Flags:', e.detail.flags);
});
4. Server-side Lookups (Optional)
For server-side decisions, create an API key and query devices:
curl -H "Authorization: Bearer sk_prod_your_api_key" \
"https://collect.noxtica.com/v1/device/DEVICE_ID"
Guides
- Getting Started: Complete setup guide including SDK options and configuration
- Backend Integration: Server-side API integration for device lookups
Risk Levels
Noxtica assigns a risk level based on the fingerprint score:
| Score | Level | Meaning |
|---|---|---|
| 0-19 | minimal | Normal behavior, no red flags |
| 20-39 | low | Minor anomalies detected |
| 40-59 | medium | Some suspicious signals |
| 60-79 | high | Likely automation or spoofing |
| 80-100 | critical | Strong bot indicators |
Live Demo
Try fingerprinting yourself: Live Demo
Dashboard
Manage your account: Backoffice
Technical Details
- SDK Version: 2.2.0 (Schema: 2026-01-07)
- Deployment: Cloudflare Workers and Pages (global edge)
- Latency: Sub-100ms fingerprint processing
- Token Validity: 5 minutes (automatically managed by SDK)
Support
- Contact: Contact us for support or sales inquiries
- Demo Request: Request a demo to see Noxtica in action