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

ComponentDescription
Collector SDKJavaScript library embedded in your website
Collector APICloudflare Worker that processes fingerprints at the edge
BackofficeAdmin dashboard for analytics, API keys, and configuration
Server APIRESTful 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

Risk Levels

Noxtica assigns a risk level based on the fingerprint score:

ScoreLevelMeaning
0-19minimalNormal behavior, no red flags
20-39lowMinor anomalies detected
40-59mediumSome suspicious signals
60-79highLikely automation or spoofing
80-100criticalStrong 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