PropTech
Comprehensive verification for real estate
Tenant verification, income validation, judicial records and more. Fully automated.
What can you do?
Tenant verification before signing a lease
Income validation via payroll OCR
Criminal and judicial records
Landlord identity verification
Complete background checks
Real estate fraud prevention
Tools you'll use
Biometric KYC
ID + selfie with liveness detection.
Payroll OCR
Automatic data extraction from pay stubs.
Judicial Records
Federal and state search.
CURP/RFC
Validation against RENAPO and SAT.
Blacklist/AML
OFAC, EU, UN and more in real time.
Digital Footprint
OSINT investigation of social and public records.
singula-api.sh
// Tenant verification flow
const tenant = await singula.customers.create({ name: "Carlos", ... });
const kyc = await singula.kyc.verify({ customer_id: tenant.id });
const judicial = await singula.judicial.search({ customer_id: tenant.id });
const income = await singula.ocr.extractPayroll({ document_id: doc.id });
// Result:
{ "kyc": "approved", "judicial": "clear", "monthly_income": 45000 }