Recursos Humanos
Background checks for Human Resources
Validate identity, background and references of candidates automatically before hiring.
What can you do?
Pre-employment background checks
CURP, RFC and NSS validation
Criminal and judicial records
Biometric identity verification
Digital footprint investigation
Vendor due diligence
Tools you'll use
CURP/RFC/NSS
Validation against RENAPO, SAT and IMSS.
Judicial Records
Federal and state search.
Biometric KYC
ID + selfie with liveness detection.
Blacklist/AML
OFAC, EU, UN and more in real time.
Digital Footprint
OSINT investigation of social and public records.
Credit Bureau
Buro & Circulo de Credito score.
singula-api.sh
// Pre-employment background check
const candidate = await singula.customers.create({ name: "Ana", ... });
const curp = await singula.curp.validate({ customer_id: candidate.id });
const nss = await singula.nss.lookup({ customer_id: candidate.id });
const judicial = await singula.judicial.search({ customer_id: candidate.id });
// Result:
{ "curp": "valid", "nss": "found", "judicial": "clear" }