Identify Every |
Fingerprint + VPN/Tor Detection + Bot Detection + Weather + Currency + Country Data — all in one API call, under 75ms. No other provider can do this.
Enterprise Fingerprinting. From 1 Cent.
No subscription. No contract. No minimum. Pure pay-per-use.
What you get for 1 cent – vs. what others charge $200+/month for
What Sets Us Apart
Cookie-Independent
Works without cookies, localStorage or session IDs. Reliably identifies even after browser data is cleared.
Incognito-Resistant
Reliably identifies users even in incognito mode. No way to bypass identification.
VPN/Proxy Detection
Detects and sees through VPNs, proxies, Tor networks and other obfuscation techniques automatically.
AI Bot Detection
Detects headless browsers, Selenium, Puppeteer, Playwright and other automation tools with AI.
Under 75ms Latency
Lightning-fast all-inclusive response in under 75 milliseconds. No impact on user experience.
EU Datacenter
Data is exclusively processed and stored in EU datacenters. 100% GDPR compliant.
Device Linking
Automatically links multiple devices of the same user. Reliably detects multi-account fraud.
REST API + SDK
Easy integration into any platform. REST API, JavaScript SDK, and ready-to-use code examples for all languages.
Anonymity Intelligence
VPN score with 10+ detection sources, Tor exit nodes, iCloud Relay, datacenter IPs – with confidence percentage.
Currency Exchange
Automatic local currency detection based on visitor IP. Live exchange rates for 172 currencies included in every call.
Country Compliance
VAT rates, GDPR applicability, national holidays, demographics, legal framework – automatically per visitor country.
Weather & Air Quality
Real-time weather at visitor location: temperature, humidity, wind, UV index and EPA air quality – for personalization.
What You Get in a Single API Call
Every call returns all of these data blocks. No extra charges. No additional endpoints. Just one request.
Fingerprint
CoreAnonymity
NEWBot & Risk
CoreCurrency
NEWCountry
NEWWeather
NEWFrom Signals to Identity
Experience the entire fingerprinting process – from signal collection to secure identification.
Signal Collection
AI Processing
Identification
Protect & Act
Precise Device Recognition
Hardware
Screen, GPU, CPU Cores, Memory, Touch Support, Device Pixel Ratio
Browser
User Agent, Plugins, Languages, Timezone, Do-Not-Track, WebGL Vendor
Canvas
Canvas 2D rendering, WebGL rendering – unique like a fingerprint
Audio
AudioContext fingerprint based on device audio hardware
Fonts
Installed fonts as unique identification feature
Bot Detection
Detection of bots, headless browsers, emulators and automation
PaperOffice vs. Competition
See why no other provider can match our all-inclusive approach.
Typical industry comparison based on publicly available pricing and feature sets (as of 2026). Individual providers may vary. = Paid add-on
Protect Your Business
Fraud Prevention
Detect fraudulent accounts and transactions before damage occurs.
Account Security
Protect user accounts from takeovers through device recognition.
Multi-Account Prevention
Prevent multiple accounts for promotions, bonuses and trials.
Payment Fraud
Reduce chargebacks and increase legitimate conversions.
Experience the All-Inclusive API Live
See in real-time what a single API call returns: fingerprint, anonymity score, bot detection, weather, currency and country data.
Analyze Your Device
Click to experience the full all-inclusive API response – fingerprint, anonymity, weather, currency and more.
Analyzing Device...
Impressed? Integrate the API in under 5 minutes.
Start Free NowSimple Integration. Powerful Results.
REST API with a single line of code. All-inclusive response by default. Use ?include=core for slim response.
# All-Inclusive: Fingerprint + Anonymity + Currency + Country + Weather
curl -X POST https://api.paperoffice.ai/latest/fingerprint/identify \
-H "Content-Type: application/json" \
-d '{ "components": { ... } }'
# Slim response (fingerprint only):
# POST /fingerprint/identify?include=core
# Select specific blocks:
# POST /fingerprint/identify?include=anonymity,currency const fp = await PaperOfficeFingerprint.load();
const result = await fp.get();
const response = await fetch(
'https://api.paperoffice.ai/latest/fingerprint/identify',
{
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(result)
}
);
const data = await response.json();
console.log(data.visitor_id, data.risk_score); import requests
response = requests.post(
'https://api.paperoffice.ai/latest/fingerprint/identify',
json={
'visitorId': visitor_id,
'components': components
}
)
data = response.json()
print(f"Visitor: {data['visitor_id']}")
print(f"Risk: {data['risk_score']}") const response = await fetch(
'https://api.paperoffice.ai/latest/fingerprint/identify',
{
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ visitorId, components })
}
);
const { visitor_id, risk_score, ip } = await response.json();
console.log(`Visitor: ${visitor_id}, Risk: ${risk_score}`); {
"status": "success",
"visitor_id": "02c8bfa95b5becb1ae32f7d...",
"confidence": { "score": 0.995, "level": "high" },
"device": { "browser": "Chrome 132", "platform": "Windows 10", "type": "desktop" },
"ip": {
"address": "185.220.xxx.xxx", "city": "Munich", "country": "DE",
"isp": "Deutsche Telekom AG", "lat": 48.13, "lon": 11.58,
"vpn": false, "proxy": false, "tor": false, "relay": false
},
"bot": { "is_bot": false, "score": 5, "server_evaluated": true },
"risk": { "score": 12, "level": "low", "factors": [] },
"velocity": { "suspicious": false, "travel_speed": null },
"anonymity": {
"is_vpn": false, "is_tor": false, "is_relay": false,
"score": "2.50%", "type": null
},
"currency": {
"local": "EUR",
"rates": { "USD": 1.085, "GBP": 0.857, "CHF": 0.945, "JPY": 162.34 },
"all_rates_count": 172
},
"country": {
"code": "DE", "name": "Germany",
"vat": { "standard_rate": 19, "reduced_rate": 7 },
"legal": { "data_protection": "GDPR", "gdpr_applicable": true }
},
"weather": {
"temp_c": 12.3, "condition": "Partly Cloudy",
"humidity": 67, "air_quality": { "us_epa_index": 1 }
},
"linked_devices": [], "similar_devices": [],
"processing_time": "75ms"
} Customer Responsibility Model
PaperOffice acts as processor under Article 28 GDPR. The integrator (Customer) is controller and must ensure lawful basis, end-user notices, and erasure workflows.
Customer (Controller)
Lawful basis, privacy notices, data subject rights, records of processing, optional Network Intelligence disclosure.
PaperOffice (Processor)
Tenant-isolated processing on API instructions, hash-based storage, Art. 17 forget via POST /privacy/forget, no consent UI per call.
Retention & Storage
Default 90 days (configurable up to 365). Canvas/WebGL/audio stored as hashes, not raw signals. EU processing.
Art. 17 Forget
Implement POST /privacy/forget with visitor_id when erasure is required. Re-ingestion is blocked via tombstone.
Network Intelligence
Cross-tenant network_pool=true only after separate approval. Default: strict workspace isolation.
Integration checklist
- Document lawful basis in Customer privacy policy
- Generate and accept DPA via Compliance Package
- Use Bearer authentication on all data endpoints
- Call /privacy/forget for erasure requests
- Review Sub-Processor List and Trust Center
Enterprise Security. EU Datacenters.
100% EU Data
All data is processed exclusively in EU datacenters in Navarra. No transfer to third countries.
GDPR Compliant
Full GDPR compliance with data processing agreement (DPA), data protection impact assessment and deletion concept.
Hash Storage & Retention
Fingerprint signals are stored as hashes and metadata with configurable retention (default 90 days, max 365). Strict tenant isolation per workspace.
25-Server Cluster
Highly available infrastructure with HAProxy load balancing, Galera Cluster and automatic failover.
Encryption
TLS 1.3 for all connections. Data is encrypted at rest and in transit.
99.9% SLA
Guaranteed uptime with service level agreement. 24/7 monitoring and automatic self-healing.
Frequently Asked Questions
How accurate is the device fingerprint?
What does the all-inclusive API include?
Is the device fingerprint GDPR compliant?
How is billing structured?
Can I select which data blocks to include?
How fast is the all-inclusive response?
What anonymity details are included?
Is there a free trial?
Customer Success Stories
Discover how businesses transformed their processes with PaperOffice AI.
Companies worldwide trust PaperOffice AI
"Enterprise document management for all our mining operations. World class."
"FDA-regulated pharmaceutical labels require seamless documentation. PaperOffice has reduced our approval process from days to hours."
"Technical documentation and order processing now run fully automatically."
"Digitization has revolutionized our administration. Citizen inquiries are now processed in minutes instead of days."
"Patient records, medical reports, and referrals are automatically captured and classified. Our practice team finally has time for their patients."
"8,000 employees and thousands of guest documents every day. PaperOffice has completely digitized our back-office processes."
"Loan applications and compliance documents are now processed in minutes instead of hours. The regulatory review is fully automated."
"Construction project documentation and compliance are now digital and traceable."
"Check-in forms, invoices, and guest communications are fully digital. Our concierge team now focuses on providing excellent service."
"Gas station billing, supplier documents, and compliance records from over 250 stations are automatically processed and archived."
"GMP-compliant documentation for pharmaceutical functional labels is now fully automated. Audit trails are seamless and instantly accessible."
"Blueprints, permits, and customer files for our wooden houses are now managed centrally. After six generations, we are finally paperless."
"Supplier contracts, certificates, and customs papers for hundreds of roasteries worldwide are automatically captured and assigned to the correct product."
"Temperature logs, CMR waybills, and food certificates are automatically scanned and assigned to the order. Misallocations are a thing of the past."
"Heavy transport permits, route plans, and project documentation are now instantly accessible digitally. No more searching through folders."
"Customs documents, warehouse receipts, and shipping orders for our Eastern European network are automatically classified. Four generations of logistics, finally digital."
"Printing specifications, customer approvals, and material certificates are now accessible centrally. The production error rate has dropped to near zero."
"Sustainability certificates, supplier contracts, and customer specifications are processed automatically. Swiss precision, now also digital."
"Building permits, subcontractor contracts, and acceptance protocols for our commercial properties are now fully documented digitally."
"Purchase agreements, exposés, and customer files from over 30 years of market leadership are now digitally searchable. Every agent finds everything in seconds."
"Ocean freight documents, customs declarations, and bills of lading are automatically captured. Baltic Sea logistics has never been so efficient."
"Thousands of custom packaging orders per week, including design approvals, print data, and delivery documents. PaperOffice keeps it all together."
"Pathology lab documentation and device certifications are now fully automated. Seamless traceability for every specimen."
"Loan documents, security papers, and customer correspondence are processed in minutes instead of hours. The regulatory review is seamless."
"Technical specifications, quality certificates, and recycling protocols for our steel production are central and instantly accessible."
"Pharma and cosmetic label specifications with regulatory requirements are automatically checked and approved. No more manual checklists."
"KYC documents, investment reports, and regulatory filings are classified in seconds. As an MAS-regulated robo-advisor, seamless compliance is essential."
"Safety data sheets, transport permits, and ADR documents for chemical logistics are automatically assigned. Zero tolerance for errors."
"Certificates of authenticity, supplier records, and customer warranties for our pearl collections are automatically archived and instantly accessible."
"SME loan applications, security documents, and regulatory reports are automatically classified. Our advisors have more time for customer consulting."
"Customer files from over 135 years of banking history are being successively digitized. 5,000 employees now have instant access to all documents."
"Microcredit applications and compliance documents for millions of customers are now processed in minutes instead of days. A game changer for financial inclusion."
"Hundreds of thousands of delivery notes and return slips per day are processed automatically. Vietnam's leading e-commerce logistics provider, now paperless."
"CNC manufacturing protocols, material certificates, and customer specifications for oil, gas, and aerospace projects are now fully documented digitally."
"Vision 2030 requires complete digitization. PaperOffice processes government documents for Saudi Arabia's digital backbone."
"Material certificates, hardening protocols, and customer specifications are automatically assigned to the correct order. Australia's only Q&T manufacturer, now paperless."
"Weld seam protocols, structural calculations, and project plans are managed digitally. Our workshop teams have access in real time."
"Aerospace certificates, CNC programs, and customer tolerances are automatically classified. AS9100 compliance has never been easier."
"Merchant contracts, KYC documents, and transaction receipts for hundreds of thousands of SMEs are processed in seconds. Mexico's payment revolution, paperless."
"Harvest documentation, export certificates, and quality protocols for our high-altitude Malbecs are automatically archived. 120 years of winemaking tradition, now digital."
"Millions of user verifications and regulatory documents are processed fully automatically. Scaling without paper."
"Merchant onboarding documents and compliance records for Africa's leading payment provider are processed in minutes instead of days."
"Organic certificates, supplier audits, and product labels for thousands of natural products are automatically checked and archived."
"Regulatory documents from 33 African countries, partner contracts, and audit trails are managed fully automatically. An enterprise DMS for a $3 billion fintech."
"Prescriptions and medication management now run fully automatically. More time for our patients."
"Centuries-old documents are now digitally searchable. A milestone for our historical archives."
"Our caregivers finally have more time for residents instead of paperwork."
"500,000+ records digitized. Our deputies now find all information instantly."
"Patient records management is now a breeze. Everything automatically captured and archived."
"Inheritance and estate documentation is now efficient and error-free."
"Digital property management for all our residential complexes. Tenants and owners are thrilled."
"With PaperOffice, we have accelerated our invoice processing by 99%. The AI automatically recognizes all relevant data and assigns it correctly."
"PaperOffice has become indispensable to our daily work. Orders, quotes, and invoices are now automated."
"The documentation of our care services is now digital and automated. More time for our patients."
"Technical drawings, bills of materials, and quality protocols are instantly searchable. A search that used to take 30 minutes now takes 30 seconds."
"Client receipts, tax assessments, and annual financial statements are automatically sorted and assigned to the correct client. Receipt chaos is a thing of the past."
"Project documentation, SLAs, and customer communication for our IT consulting projects are automatically classified and archived."
Ready for all-inclusive device intelligence?
6 APIs in 1 call. €0.01 each. Start now with 1,000 free API calls.