The Address Verification check validates that a business operates from a legitimate physical address and identifies any additional addresses associated with the business. This check helps detect virtual offices, mail drops, and other address-related risks.
Overview
The check examines:
Physical address validation
Address type identification (residential, commercial, PO Box, etc.)
Multiple address associations
Address consistency across sources
Geographic verification
Running the Check
API Endpoint
POST https://api.parcha.ai/api/v1/startKYBAgentJob
Request Parameters
Important : You must use your own agent key, not a default or public agent key. Your agent key can be found in the Parcha dashboard under your agent’s settings, or in the “Test API Integration” dialog.
Your KYB agent key from the Parcha dashboard. This is unique to your organization and agent configuration.
Use "kyb.addresses_check" for address verification.
The business information for verification. A unique identifier for this check case.
The legal name of the business to verify.
The street address of the business.
The city where the business is located.
The state or region where the business is located.
The country code (ISO 3166-1 alpha-2).
Registered address if different from operational address.
Example Request
curl -X POST 'https://api.parcha.ai/api/v1/startKYBAgentJob' \
-H 'Authorization: Bearer YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"agent_key": "your-kyb-agent-key",
"check_id": "kyb.addresses_check",
"payload": {
"id": "address-check-001",
"self_attested_data": {
"business_name": "Acme Corporation",
"address_of_operation": {
"street_address": "123 Main Street",
"city": "San Francisco",
"state": "CA",
"postal_code": "94102",
"country_code": "US"
}
}
}
}'
import requests
api_key = 'YOUR_API_KEY'
url = 'https://api.parcha.ai/api/v1/startKYBAgentJob'
headers = {
'Authorization' : f 'Bearer { api_key } ' ,
'Content-Type' : 'application/json'
}
data = {
'agent_key' : 'your-kyb-agent-key' , # Replace with your actual agent key
'check_id' : 'kyb.addresses_check' ,
'payload' : {
'id' : 'address-check-001' ,
'self_attested_data' : {
'business_name' : 'Acme Corporation' ,
'address_of_operation' : {
'street_address' : '123 Main Street' ,
'city' : 'San Francisco' ,
'state' : 'CA' ,
'postal_code' : '94102' ,
'country_code' : 'US'
}
}
}
}
response = requests.post(url, json = data, headers = headers)
print (response.json())
import axios from 'axios' ;
const apiKey = 'YOUR_API_KEY' ;
const url = 'https://api.parcha.ai/api/v1/startKYBAgentJob' ;
const data = {
agent_key: 'your-kyb-agent-key' , // Replace with your actual agent key
check_id: 'kyb.addresses_check' ,
payload: {
id: 'address-check-001' ,
self_attested_data: {
business_name: 'Acme Corporation' ,
address_of_operation: {
street_address: '123 Main Street' ,
city: 'San Francisco' ,
state: 'CA' ,
postal_code: '94102' ,
country_code: 'US'
}
}
}
};
axios . post ( url , data , {
headers: {
'Authorization' : `Bearer ${ apiKey } ` ,
'Content-Type' : 'application/json'
}
})
. then ( response => console . log ( response . data ))
. catch ( error => console . error ( 'Error:' , error ));
Initial Response
{
"id" : "job-abc123" ,
"status" : "PENDING" ,
"created_at" : "2024-02-15T10:30:00Z" ,
"updated_at" : "2024-02-15T10:30:00Z" ,
"agent_id" : "your-agent-key" ,
"input_payload" : {
// Original request payload
}
}
Retrieving Check Results
Once the job is complete, retrieve the results using the job ID with the getJobByID endpoint. Make sure to include the include_check_results=true parameter to get the full check results.
GET https://api.parcha.ai/api/v1/getJobByID?job_id=job-abc123 & include_check_results = true
Check Process
The address verification check follows these steps:
Address Validation
Validates address format and completeness
Verifies address exists in postal databases
Checks for geocoding accuracy
Address Type Detection
Identifies if address is residential, commercial, or mixed-use
Detects PO Boxes, mail forwarding services, or virtual offices
Flags registered agent addresses
Cross-Reference Analysis
Compares operational address with incorporation address
Searches for additional addresses associated with the business
Validates address consistency across data sources
Risk Assessment
Evaluates address legitimacy for business operations
Identifies high-risk address types
Assesses physical presence indicators
Check Results
Response Structure
{
type : "AddressesCheckResult" ;
passed : boolean ;
operational_address : AddressValidation ;
incorporation_address ?: AddressValidation ;
additional_addresses ?: Array < AddressInfo > ;
risk_flags ?: Array < RiskFlag > ;
}
type AddressValidation = {
address : string ;
validated : boolean ;
address_type : "commercial" | "residential" | "mixed" | "po_box" | "virtual" | "registered_agent" ;
geocoded : boolean ;
coordinates ?: {
latitude : number ;
longitude : number ;
};
verification_source ?: string ;
}
type RiskFlag = {
type : string ;
severity : "low" | "medium" | "high" ;
description : string ;
}
Example Results
Low Risk
Medium Risk
High Risk
{
"type" : "AddressesCheckResult" ,
"passed" : true ,
"operational_address" : {
"address" : "123 Main Street, San Francisco, CA 94102" ,
"validated" : true ,
"address_type" : "commercial" ,
"geocoded" : true ,
"coordinates" : {
"latitude" : 37.7749 ,
"longitude" : -122.4194
},
"verification_source" : "Google Places"
},
"additional_addresses" : [],
"risk_flags" : []
}
{
"type" : "AddressesCheckResult" ,
"passed" : true ,
"operational_address" : {
"address" : "456 Oak Avenue, Austin, TX 78701" ,
"validated" : true ,
"address_type" : "residential" ,
"geocoded" : true ,
"coordinates" : {
"latitude" : 30.2672 ,
"longitude" : -97.7431
}
},
"risk_flags" : [
{
"type" : "residential_address" ,
"severity" : "medium" ,
"description" : "Business operates from a residential address"
}
]
}
{
"type" : "AddressesCheckResult" ,
"passed" : false ,
"operational_address" : {
"address" : "PO Box 1234, Wilmington, DE 19850" ,
"validated" : true ,
"address_type" : "po_box" ,
"geocoded" : false
},
"risk_flags" : [
{
"type" : "invalid_address_type" ,
"severity" : "high" ,
"description" : "PO Box addresses are not acceptable for business operations"
},
{
"type" : "no_physical_presence" ,
"severity" : "high" ,
"description" : "No verifiable physical business location found"
}
]
}
Risk Factors
The check may flag concerns if:
Address is a PO Box or mail forwarding service
Address is a registered agent address (common in Delaware)
Address is a virtual office with no physical presence
Address cannot be validated or geocoded
Multiple businesses operate from the same residential address
Operational address differs significantly from incorporation address
Address is in a high-risk jurisdiction
Best Practices
Require Physical Addresses : Don’t accept PO Boxes for business operations
Verify Consistency : Ensure addresses match across documents
Check Multiple Sources : Cross-reference with business directories and government databases
Document Changes : Track address changes over time
Combine with Other Checks : Use alongside incorporation and business profile checks