Application Environment Verification API
Overview
Application Environment Verification (AEV) is an Android library and API from FingerprintJS that checks whether a user device is safe to use. It detects rooted devices, emulators, and other risk signals that could indicate fraud or tampering. Developers use it to enforce security policies before granting access to sensitive app features.
Beginner Tip
Start by integrating the Android SDK into your app first — the API works alongside the library to verify results server-side. Always validate device signals on your backend rather than trusting the client alone.
Available Data
Example Response
{
"title": "The Great Gatsby",
"authors": [
"F. Scott Fitzgerald"
],
"publishedDate": "1925-04-10",
"pageCount": 218,
"categories": [
"Fiction"
],
"imageLinks": {
"thumbnail": "https://books.google.com/..."
},
"averageRating": 4
} Field Reference
isRooted True if the device appears to be rooted or jailbroken. isEmulator True if the app is running inside an emulator rather than a real device. riskLevel Overall device risk assessment: low, medium, or high. requestId Unique ID for this verification request, useful for support and auditing. Implementation Example
const url = "https://github.com/fingerprintjs/aev";
// 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 →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.
Complete Criminal Checks
Complete Criminal Checks provides a REST API to search for criminal offense records across all U.S.