FingerprintJS Pro API
Overview
FingerprintJS Pro is a browser fingerprinting API that identifies visitors with extreme accuracy, even in incognito mode. It helps developers detect fraudulent accounts, bot activity, and unauthorized access attempts without relying on cookies. Integrating it into your web app is straightforward using a JavaScript snippet and an API key.
Beginner Tip
Start with the JavaScript agent snippet provided in the dashboard — it handles fingerprint generation automatically. You only need to call the server-side API to retrieve stored visit history or analyze signals.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from FingerprintJS Pro",
"description": "Fraud detection API offering highly accurate browser fingerprinting",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
visitorId Unique identifier for the browser/device, stable across sessions. confidence.score Probability (0-1) that the visitorId is accurate. incognito Whether the visitor is browsing in private/incognito mode. ip IP address of the visitor at the time of the event. browserName Name of the browser detected (e.g., Chrome, Firefox). Implementation Example
// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "https://dev.fingerprintjs.com/docs";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Similar APIs
View All →Application Environment Verification
Application Environment Verification (AEV) is an Android library and API from FingerprintJS that checks whether a user device is safe to use.
BinaryEdge
BinaryEdge is a cybersecurity platform that continuously scans the entire internet and exposes the results through its API.
Botd
Botd is an open-source JavaScript library and API from FingerprintJS that detects whether a web visitor is a bot or a real human browser.
Bugcrowd
The Bugcrowd API gives you programmatic access to your organization's bug bounty program data, including submissions, rewards, and researcher profiles.
Censys
Censys is an internet-wide scanning platform that lets you search for any internet-connected host, device, or certificate using its REST API.