Complete Criminal Checks API
Overview
Complete Criminal Checks provides a REST API to search for criminal offense records across all U.S. states and Puerto Rico. You can look up offender data by name or other identifiers to assist with background screening workflows. It is aimed at businesses and developers who need to integrate background checks into their applications.
Beginner Tip
Always obtain proper legal authorization and comply with the Fair Credit Reporting Act (FCRA) before using criminal record data in hiring or tenant screening decisions. Start with test mode to validate your integration before going live.
Available Data
Example Response
{
"input": "[email protected]",
"is_valid": true,
"format_valid": true,
"details": "Input passes all validation checks"
} Field Reference
offenders List of offender records matching the search criteria. offenders[].name Full name of the offender as recorded in the database. offenders[].state U.S. state where the offense record originates. offenders[].offense Description of the criminal offense on record. offenders[].status Current status of the offender, such as active or inactive. Implementation Example
const url = "https://completecriminalchecks.com/Developers";
// 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.