डिजिटल वस्तुओं का थोक मंच

KYB Onboarding Tech Stack 2026: Sumsub vs Veriff vs In-House

2026 KYB stack का पूरा overview: Sumsub vs Veriff vs in-house, document AI, और AML के लिए UBO graph।

KYB Onboarding Tech Stack 2026: Sumsub vs Veriff vs In-House

KYB (Know Your Business) digital goods में हर B2B payment flow के लिए compliance obligation है। KYC के विपरीत, KYB person नहीं, company verify करता है: incorporation, UBOs, sanctions, और ongoing monitoring। यह article 2026 के लिए production KYB stack walk-through है।

Note: यह article आपके अपने platform का KYB stack describe करता है। FoxReload API access के लिए X-API-Key header से authenticate करें (https://public-api.foxreload.com) — FoxReload separately onboarding process handle करता है।

1. KYB engine को क्या करना चाहिए

Minimum pipeline:

async function onboardBusiness(b: BusinessApplication): Promise<KybDecision> {
  await collectDocuments(b);          // Cert of incorp, articles, IDs
  await documentAi.extract(b.docs);   // OCR + structured fields
  await registryLookup(b);            // Companies House, MCA India, etc.
  await sanctionsScreen(b);           // OFAC, EU, UN, UK
  await pepCheck(b.ubos);             // Political exposure
  const score = riskScore(b);
  if (score > 70) return { decision: 'manual_review' };
  if (score > 40) return { decision: 'approved_enhanced_monitoring' };
  return { decision: 'approved' };
}

हर step audit log के साथ अलग compliance checkpoint है।

2. Sumsub vs Veriff — production comparison

Feature Sumsub Veriff
Jurisdiction coverage 220+ 190+
KYB API Yes (full) Yes (limited)
UBO discovery Auto + manual Manual upload
OCR + Document AI Industry-leading Strong
Pricing (KYB) $20–40/applicant $5–15/applicant
Median onboarding time 18 min 11 min
Conversion (KYB completion) 81% 87%
Sanctions DB refresh 4h 24h

Compliance-heavy distributors (FX, crypto) के लिए Sumsub pick है। Retail/SaaS B2B जहाँ UX coverage से ज़्यादा matter करे — Veriff।

3. Document AI — OCR + LLM extraction

KYB documents (incorporation cert, articles, IDs) PDF/JPEG में आते हैं। 2026 stack:

# Sumsub-style pipeline
from sumsub import Client
sumsub = Client(api_key=os.environ['SUMSUB_KEY'])

applicant = sumsub.applicants.create(level='kyb-business')
sumsub.applicants.add_document(
    applicant_id=applicant.id,
    file=open('incorporation.pdf', 'rb'),
    type='COMPANY_DOC',
    sub_type='CERTIFICATE'
)
# Sumsub OCR + LLM extracts: company_name, reg_number, dir_names, address
result = sumsub.applicants.get(applicant.id)
print(result.extracted_data)

Western registries पर accuracy 95–98% है। Emerging markets (LatAm, Africa) पर — 80–88%, human review चाहिए।

4. Beneficial-owner graph

UBO discovery ownership chain का recursive walk है। Company A → owns 60% B → owns 80% C के लिए, C का effective owner = 0.6 * 0.8 = 48%। Graph की तरह store करें:

CREATE TABLE ownership_edges (
  parent_id UUID,    -- shareholder (person या company)
  child_id UUID,     -- owned entity
  percentage DECIMAL(5,2),
  effective_date DATE,
  source TEXT,       -- 'registry', 'self_declared'
  PRIMARY KEY (parent_id, child_id, effective_date)
);

-- Recursive UBO query
WITH RECURSIVE chain AS (
  SELECT parent_id, child_id, percentage AS effective
  FROM ownership_edges WHERE child_id = $target
  UNION ALL
  SELECT e.parent_id, c.child_id, c.effective * e.percentage / 100
  FROM chain c JOIN ownership_edges e ON e.child_id = c.parent_id
)
SELECT parent_id FROM chain WHERE effective > 25;

हर verified partner पर quarterly run करें re-validation के लिए।

CTA

FoxReload onboarding के बाद API key मिलती है। Access request करें और onboarding शुरू करें।

अक्सर पूछे जाने वाले प्रश्न

Complete 2026 KYB stack में क्या आता है?
Document collection + OCR, sanctions/PEP screening, UBO discovery & verification, business-registry lookup, ongoing monitoring (weekly), risk scoring, और audit trail। Best-in-class platforms (Sumsub, ComplyAdvantage) सब कुछ एक API में cover करते हैं।
KYB onboarding कितना time लेता है?
Standard turnaround low-risk entities के लिए 2–24 hours है और high-risk (multi-layer ownership, offshore, PEP) के लिए 3–5 business days तक। Sumsub use करने पर P50 onboarding completion 18 minutes, P95 14 hours है।
UBO क्या है और क्यों important है?
Ultimate Beneficial Owner — वह natural person जो company का >25% directly या entities की chain के through own करता है। FATF और EU AMLD हर UBO identify करने, sanctions/PEP पर screen करने, और register maintain करने को mandate करते हैं। इसे skip करने पर €500k+ fines और licence risk।
क्या in-house KYB engine बना सकते हैं?
Technically हाँ, legally — recommended नहीं। KYB को 50+ business registries, sanctions feeds (OFAC, EU, UN, UK), और PEP databases का access चाहिए। Licences और integrations $200k+/year cost करती हैं। Sumsub/Veriff वही $5–25 per check में बेचते हैं।
FoxReload API एक्सेस पाएं

संबंधित लेख