Comprehensive API for background checks, criminal records, phone lookups, property records, and business searches.
https://softwaresphere.ca/tools/USBackgroundCheckTool/api.php
All API requests require an api_key parameter.
Basic people search returning addresses, relatives, and identifiers for background reports.
Full comprehensive background report. Requires data from a prior Background Search.
Search criminal records including felonies, misdemeanors, and arrests.
Check against OFAC terrorist watchlist and sanctions list.
Reverse phone lookup to identify owner, carrier, and line type.
Verify address and find associated residents.
Property ownership, valuation, and deed information.
Search business records and corporate filings.
curl "https://softwaresphere.ca/tools/USBackgroundCheckTool/api.php?\
type=background_search&\
first_name=John&\
last_name=Smith&\
state=FL&\
api_key=YOUR_API_KEY"
curl "https://softwaresphere.ca/tools/USBackgroundCheckTool/api.php?\
type=phone_lookup&\
phone=3055551234&\
api_key=YOUR_API_KEY"
fetch('https://softwaresphere.ca/tools/USBackgroundCheckTool/api.php', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
type: 'property_records',
street: '123 Main St',
city: 'Miami',
state: 'FL',
api_key: 'YOUR_API_KEY'
})
}).then(r => r.json()).then(console.log);
{
"success": true,
"check_type": "background_search",
"cost": "$0.75",
"remaining_balance": "$24.25",
"data": {
}
}
{
"error": true,
"message": "Missing required fields",
"missing_fields": ["first_name", "state"]
}
Get your API key from your User Profile after logging in.