Skip to main content
Didit Raises $7.5M to Build the Infrastructure for Identity and Fraud
Didit
Business Verification (KYB)

Verify any business.
Surface every UBO.

Verify any company end-to-end: pull the registry, surface every UBO (ultimate beneficial owner), screen the entity and every UBO against sanctions, and run a KYC (know your customer) check on each. $2.00 per business, 220+ jurisdictions.

Backed by
Y CombinatorRobinhood Ventures
GBTC Finance
Bondex
Crnogorski Telekom
UCSF Neuroscape
Shiply
Adelantos

Trusted by 2,000+ organizations worldwide.

Didit Business Verification, registry extract scanned with officer-graph and UBO-triangulation overlays.

Closed-loop KYB

Registry, UBO, officers,
and a KYC for every UBO.

One call resolves the company, extracts owners and officers, screens everyone against 1,300+ sanctions lists, and runs a reusable KYC check for each UBO, at no extra cost.

How it works

From sign-up to verified user in four steps.

  1. Step 01

    Create the workflow

    Pick the checks you want, ID, liveness, face match, sanctions, address, age, phone, email, custom questions. Drag them into a flow in the dashboard, or post the same flow to our API. Branch on conditions, run A/B tests, no code required.

  2. Step 02

    Integrate

    Embed natively with our Web, iOS, Android, React Native, or Flutter SDK. Redirect to a hosted page. Or just send your user a link, by email, SMS, WhatsApp, anywhere. Pick what fits your stack.

  3. Step 03

    User goes through the flow

    Didit hosts the camera, the lighting cues, the mobile hand-off, and accessibility. While the user is in the flow, we score 200+ fraud signals in real time and verify every field against authoritative data sources. Result in under two seconds.

  4. Step 04

    You receive the results

    Real-time signed webhooks keep your database in sync the moment a user is approved, declined, or sent to review. Poll the API on demand. Or open the console to inspect every session, every signal, and manage cases your way.

Built for compliance . Built against fraud . Open by design

Six capabilities. One closed loop. Business Verification.

Every capability is a toggle on the same workflow. No upsell tiers, no separate plans, no manual flow on the side. Switch them on or off per workflow in the console.
01 . Registry

220+ jurisdictions. One registry call.

We query the official company registry in the country of incorporation and return the company's legal name, number, type, status, address, and tax ID. The EU, UK, US (per-state), and major Latin American jurisdictions are covered day one.
Registry lookupGET /registry/ES
company_nameAcme Iberia SLregistrationB-87412309countryEStypeSociedad Limitadaincorporated2018-04-12statusActive
220+ jurisdictions covered.EU - US - LatAm
02 . UBOs

Beneficial owners. Pulled, prefilled, confirmed.

Anyone owning above your ownership threshold (commonly 25%) is extracted from the registry and prefilled into the hosted flow. The business admin reviews, edits, or adds parties before submitting. Corporate owners can spawn a nested KYB sub-session.
UBOsthreshold 25%
Carmen Espanola
role: ubo - shareholder
42.0%
David Sanchez
role: ubo
33.0%
Iberia Holdings SA
corporate shareholder
25.0%
Pulled from registry. Confirmed in-flow.key_people_checks[]
03 . Officers

Directors, secretaries, signatories. 15 role tags.

15 canonical role tags cover ownership (UBO, shareholder, beneficiary, settlor, investor) and governance (director, chairman, secretary, signatory, founder). One person can carry several. Each tag is required or optional per workflow.
Officers15 role tags
Lucia Martinez
directorsignatory
Joaquin Ortiz
non_exec
Marta Vidal
secretary
Each role configurable per workflow.15 canonical tags
04 . Entity + person AML

AML on the company. AML on every UBO.

AML screening fires automatically against 1,300+ sources, sanctions (OFAC, EU, UN, HM Treasury), PEPs (politically exposed persons), adverse media, and enforcement actions. Company screened as entity; every owner and officer as person.
AML on the entity AND every UBO1,300+ lists
entity_type: company
  • Acme Iberia SL
  • 0 sanctions hits
  • 0 enforcement
  • Approved
entity_type: person
  • Carmen Espanola
  • 0 PEP hits
  • 0 adverse media
  • Approved
One screen. Company and every UBO.$0.20 / entity
05 . Linked KYC

One KYC per UBO. Same orchestrator. Same audit trail.

Every role that requires KYC spawns a child session, hosted ID capture, passive liveness, face match, Device & IP analysis. The parent waits until every required child resolves, then aggregates to a final verdict. No spreadsheet, no manual chase.
Linked KYCubo_kyc_summary
Acme Iberia SLbs_01H...
vs_01J...Carmen EspanolaApproved
vs_01J...David SanchezApproved
vs_01J...Lucia MartinezIn Review
Closed-loop. One audit trail.$0.33 / linked KYC
06 . Documents

Supporting documents. OCR vs registry, cross-checked.

Certificate of incorporation, articles of association, shareholder register, financial statements, proof of address, uploaded inside the hosted flow. We extract the fields, cross-check them against the registry, and flag any inconsistency for analyst review.
DocumentsOCR cross-check
Certificate of incorporationMatch
Articles of associationMatch
Shareholder registerMatch
Proof of registered addressMatch
OCR vs registry. Inconsistencies flagged.$0.20 / document
Integrate

One workflow type. Two integration paths.

Pick a Business Verification workflow in the console and call our session API. Listen to the webhook for an event-driven flow, or fetch the decision on demand. Same JSON either way.
POST /v3/session/Hosted UI
$ curl -X POST https://verification.didit.me/v3/session/ \
  -H "x-api-key: $DIDIT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "workflow_id": "wf_kyb_es",
    "vendor_data": "biz-acme-001"
  }'
201Created{ "session_id": "bs_01H...", "url": "verify.didit.me/..." }
KYB-type workflow_id auto-creates a business session. Deliver the url to the company admin.docs →
GET /v3/session/{id}/decision/Server to server
$ curl https://verification.didit.me/v3/session/bs_01H.../decision/ \
  -H "x-api-key: $DIDIT_API_KEY"
200OK{ "status": "APPROVED", "session_kind": "business" }
Returns registry_checks, key_people_checks, company_aml_checks, document_verifications.docs →
Agent-ready integration

Ship Business Verification in one prompt.

Paste the block below into Claude Code, Cursor, Codex, Devin, Aider, or Replit Agent. Fill in your stack. The agent provisions Didit, creates the Business Verification workflow, wires the webhook, and ships.
didit-integration-prompt.md
# Didit Business Verification (KYB) — integrate in 5 minutes

You are integrating Didit's Business Verification (Know Your Business / KYB)
module into <my_stack>. Follow these steps exactly. Every URL, header, and
workflow-type value below is canonical — do not paraphrase or "improve" them.

## 1. Provision an account
- Sign up: https://business.didit.me (no credit card required).
- Or provision programmatically: POST https://apx.didit.me/auth/v2/programmatic/register/
  (returns an API key bound to the workspace + application).

## 2. Create a KYB workflow
In the Business Console: Workflows -> Create workflow -> select
"Business Verification" as the workflow type. Enable the features you need:

- Company registry lookup       (required)
- Company Anti-Money Laundering (AML)                   (recommended)
- Key People                    (required for most regulated industries)
- Documents                     (optional - configure which document types)

Save and copy the workflow_id. KYB workflows automatically create
business sessions - there is no extra "business" flag to set on the
session create call.

## 3. Create a business session via the API
POST https://verification.didit.me/v3/session/
Headers:
  x-api-key:    <your-api-key>      (lowercase, hyphenated)
  Content-Type: application/json
Body:
  {
    "workflow_id": "<your-kyb-workflow-id>",
    "vendor_data": "biz-acme-001"
  }

Response:
  - session_id          (e.g. bs_01H...)
  - session_number      (sequential)
  - url                 (hosted verification link)

Deliver the url to the business administrator via your own channel.
They open it, confirm registry data, add Ultimate Beneficial Owners
(UBOs) and officers, upload documents, and submit.

## 4. Webhooks
Register a webhook destination once via
  POST https://verification.didit.me/v3/webhook/destinations/
with subscribed_events:
  status.updated, data.updated,
  business.status.updated, business.data.updated

Every delivery carries an X-Signature-V2 header you MUST verify before
trusting the payload.  HMAC-SHA256 verification MUST run against the raw body bytes (the raw payload as Didit sent it) BEFORE any JSON parsing — re-serialising the parsed body changes whitespace and key order, which invalidates the signature.Algorithm:
  1. sortKeys(payload) recursively
  2. shortenFloats (truncate trailing zeros after the decimal point)
  3. JSON.stringify the result
  4. HMAC-SHA256 with the secret_shared_key
  5. Hex-encode, compare to the X-Signature-V2 header.

Business-session events carry session_kind: "business" inside data and
the business_session_id. Route on session_kind to your KYB handler.

Example status.updated payload:
{
  "event": "status.updated",
  "application_id": "app_abc123",
  "timestamp": "2026-04-18T12:30:00Z",
  "data": {
    "session_id": "bs_01H...",
    "session_kind": "business",
    "vendor_data": "biz-acme-001",
    "status": "APPROVED",
    "previous_status": "IN_PROGRESS"
  }
}

## 5. Fetch the decision (optional - the webhook already carries it)
GET https://verification.didit.me/v3/session/{session_id}/decision/
Headers:
  x-api-key: <your-api-key>

Top-level shape:
  - status                              "APPROVED" | "DECLINED" | "IN_REVIEW" | "RESUBMITTED" | "IN_PROGRESS" | "NOT_STARTED"
  - session_kind                        "business"
  - registry_checks[]                   per-jurisdiction company registry payloads
  - company_aml_checks[]                entity AML hits (sanctions, PEP, adverse media)
  - key_people_checks[]                 registry-disclosed + user-submitted UBOs / shareholders / directors / representatives, plus ubo_kyc_summary
  - document_verifications[]            uploaded documents with Optical Character Recognition (OCR) fields
  - business_session_id                 mirrors session_id

Each key_people entry includes role tags (ubo, shareholder, director,
representative, authorized_signatory, etc.), ownership_percentage, voting
percentage, and - if Know Your Customer (KYC) is required for that role - a linked_kyc_session_id
pointing at a child User Verification session.

## 6. Hard rules - do not change
- Base URL for /v3/* endpoints is verification.didit.me (NOT apx.didit.me).
- KYB is workflow-typed - there is no standalone POST /v3/business-verification/.
  Set the workflow type to "Business Verification" in the console; the
  session created against that workflow_id is automatically a business session.
- Auth header is x-api-key (lowercase, hyphenated).
- Webhook signature header is X-Signature-V2 (NOT X-Signature).
- Session status casing: APPROVED, DECLINED, IN_REVIEW, RESUBMITTED, IN_PROGRESS, NOT_STARTED (uppercase, underscore).
- Always verify webhook signatures before trusting payload data.

## 7. Pricing reference (public)
- Business Verification core (registry + UBO + officers + Key People): $2.00 per check
- Company AML screening:                                                  $0.20 per check
- Each linked KYC session spawned for a UBO / officer:                    $0.33 per KYC bundle
- KYB document collection (per-document OCR + tamper check):              $0.20 per document
- 500 free verifications every month, forever, on every account.

## 8. Verify your integration
- Sandbox starts on signup at https://business.didit.me - no separate flag.
- Test companies (mocked registry responses) available in sandbox mode.
- Switch to live: flip the application's environment toggle in console.

When in doubt: https://docs.didit.me/business-verification/overview
Need more context? See the full module docs.docs.didit.me →
Compliant by design

Open a new country in one click. We do the hard work.

We open the local subsidiaries, secure the licenses, run the penetration tests, earn the certifications, and align with every new regulation. To ship verifications in a new country, flip a toggle. 220+ countries live, audited and pen-tested every quarter, the only identity provider an EU member-state government has formally called safer than in-person verification.
Read the security & compliance dossier
EU financial sandbox
Tesoro · SEPBLAC · BdE
ISO/IEC 27001
Information security · 2026
SOC 2 · Type I
AICPA · 2026
iBeta Level 1 PAD
NIST / NIAP · 2026
GDPR
EU 2016/679
DORA
EU 2022/2554
MiCA
EU 2023/1114
AMLD6 · eIDAS 2.0
EU-aligned by design

Proof numbers

Proof numbers
  • 0+
    Jurisdictions with registry, officer, and ownership coverage.
  • 0
    Role tags, owner, shareholder, director, signatory, and more.
  • $0.00
    Per business. Registry, owners, officers, and AML in one call.
  • $0.00
    Per linked KYC. Same full-bundle price as a standalone user.
Three tiers, one price list

Start free. Pay per usage. Scale to Enterprise.

500 free verifications every month, forever. Pay-as-you-go for production. Custom contracts, data residency, and SLAs (Service Level Agreements) on Enterprise.
Free

Free

$0 / month. No credit card required.

  • Free KYC bundle (ID Verification + Passive Liveness + Face Match + Device & IP Analysis), 500 / month, every month
  • Blocklisted Users
  • Duplicate Detection
  • 200+ fraud signals on every session
  • Reusable KYC across the Didit network
  • Case Management Platform
  • Workflow Builder
  • Public docs, sandbox, SDKs, MCP (Model Context Protocol) server
  • Community support
Most popular
Pay per usage

Usage Based

Pay only for what you use. 25+ modules. Public per-module pricing, no monthly minimum fee.

  • Full KYC at $0.33 (ID + Biometric + IP / Device)
  • 10,000+ AML datasets, sanctions, PEPs, adverse media
  • 1,000+ government data sources for Database Validation
  • Transaction Monitoring at $0.02 per transaction
  • Live KYB at $2.00 per business
  • Wallet Screening at $0.15 per check
  • Whitelabel verification flow, your brand, our infrastructure
Enterprise

Enterprise

Custom MSA & SLA. For large volumes and regulated programs.

  • Annual contracts
  • Custom MSA, DPA, and SLA
  • Dedicated Slack and WhatsApp channel
  • Manual reviewers on demand
  • Reseller and white-label terms
  • Exclusive features and partner integrations
  • Named CSM, security review, compliance support

Start free → pay only when a check runs → unlock Enterprise for a custom contract, SLA, or data residency.

FAQ

Common questions

What is Didit?

Didit is infrastructure for identity and fraud, the platform we wished existed when we were building products ourselves: open, flexible, and developer-friendly, so it works as a real part of your stack instead of a black box you integrate around.

One API covers verifying people (KYC, know your customer), verifying businesses (KYB, know your business), screening crypto wallets (KYT, know your transaction), and monitoring transactions in real time, on a stack built to be:

  • Fast, sub-2-second p99 on every session
  • Reliable, in production with 1,500+ companies across 220+ countries
  • Secure, SOC 2 Type 1, ISO 27001, GDPR-native, and formally attested by Spain's financial regulator as safer than verifying someone in person

The footprint underneath: 14,000+ document types in 48+ languages, 1,000+ data sources, and 200+ fraud signals on every session. The Didit infrastructure dynamically learns from every session and gets better every day.

Which registries and countries does Didit cover?
220+ jurisdictions with registry, officer, and ownership coverage. EU member states, the United Kingdom, the United States (per-state Secretary of State, use US_CA, US_NY, US_DE in the country_code field), and major Latin American jurisdictions land in the Full coverage tier (company, officers, shareholders, UBOs, documents, financials). Other countries fall into Standard, Partial, or Manual tiers depending on what the registry exposes. The full per-country matrix lives at docs.didit.me/business-verification/supported-countries.
What is the response shape?
A single decision object reachable via GET /v3/session/[id]/decision/. Top-level status is one of APPROVED, DECLINED, IN_REVIEW, RESUBMITTED, IN_PROGRESS, or NOT_STARTED. session_kind is business. The object includes registry_checks[] (legal name, registration number, type, incorporation date, status, registered address, tax number, plus the immutable registry_data payload and the merged user_provided_data), key_people_checks[] (UBOs, shareholders, directors, representatives, split into registry and submitted buckets, with ubo_kyc_summary rolling up the linked KYC progress), company_aml_checks[], and document_verifications[]. Full reference at docs.didit.me/business-verification/response-schema.
How fast is the verification for my end user?

The full flow normally takes under 30 seconds end-to-end, pick up the ID, snap the document, snap the selfie, done. That is the fastest in the market. Legacy KYC providers usually take more than 90 seconds for the same flow.

On the back end, Didit returns the result in under two seconds at p99, measured from the moment the user finishes the selfie to the moment your webhook fires. Mobile capture is tuned for slow phones and slow networks: progressive image compression, lazy software development kit load, and a one-tap hand-off from desktop to phone via QR code if the user starts on web.

How does the linked-KYC pattern work?
Every Key People role can be individually configured to require Know Your Customer (KYC) verification. When the business admin submits the Key People form, Didit spawns a child User Verification session for each role that requires KYC, typically every UBO and every director. Each child session is reachable through the parent's ubo_kyc_summary and inherits the workflow you mapped it to. The Key People feature status stays Awaiting User until every required child resolves; it then aggregates to Approved, Declined, or In Review. Corporate UBOs spawn a nested KYB sub-session when nested KYB is enabled. One orchestrator. One audit trail. No parallel manual flow.
What happens if a user fails, abandons, or expires?

Every session lands on one of seven clear statuses, so your code always knows what to do:

  • Approved, every check passed. Move the user forward.
  • Declined, one or more checks failed. You can allow the user to resubmit the specific failed step (for example, re-take the selfie) without re-running the whole flow.
  • In Review, flagged for compliance review. Open the case in the console, see every signal, decide approve or decline.
  • In Progress, user is mid-flow.
  • Not Started, link sent, user has not opened it yet. Send a reminder if it sits too long.
  • Abandoned, user opened the link but did not finish in time. Re-engage or expire.
  • Expired, the session link aged out. Create a new session.

A signed webhook fires on every status change, so your database always stays in sync. Abandoned and declined sessions are free.

Where does my customer data live and how is it protected?

Production data is processed and stored in the European Union by default, on Amazon Web Services. Enterprise contracts can request alternative regions for jurisdictions whose regulators require it.

Encryption everywhere. AES-256 at rest across every database, object store, and backup. Transport Layer Security 1.3 in transit on every API call, webhook, and Business Console session. Biometric data is encrypted under a separate Customer Master Key.

Retention is yours to control. Default retention is indefinite (unlimited) unless you configure shorter, between 30 days and 10 years per application, and you can delete any individual session at any time from the dashboard or the API.

Certifications: SOC 2 Type 1 (Type 2 audit in progress), ISO/IEC 27001:2022, iBeta Level 1 PAD, and a public attestation from Spain''s Tesoro / SEPBLAC / CNMV that Didit''s remote identity verification is safer than verifying someone in person. Full report at /security-compliance.

Is Didit compliant for my industry?

Didit ships compliant by default for the regulators that matter to identity infrastructure:

  • GDPR + UK GDPR, controller / processor split, full Data Processing Agreement published, lead supervisory authority named (Spain''s AEPD).
  • AMLD6 + EU AML Single Rulebook, 1,300+ sanctions, politically exposed person, and adverse-media lists screened in real time.
  • eIDAS 2.0, EU Digital Identity Wallet aligned; reusable-identity ready.
  • MiCA (Markets in Crypto-Assets), ready for crypto on-ramps, exchanges, and custodians.
  • DORA, Digital Operational Resilience Act, EU financial-services operational resilience.
  • BIPA, CUBI, Washington HB 1493, CCPA / CPRA, US biometric privacy (Illinois, Texas, Washington) and California consumer privacy.
  • UK Online Safety Act, age-gating and child-safety obligations.
  • FATF Travel Rule, originator and beneficiary data on crypto transfers, IVMS-101 interoperable.

Detailed memo, every certificate, every regulator letter: /security-compliance.

How fast can I integrate and start verifying users?
  • 60 seconds to a sandbox account at business.didit.me, no credit card.
  • 5 minutes to a working verification through Claude Code, Cursor, or any coding agent via our Model Context Protocol (MCP) server.
  • A weekend to a production-ready integration with signed-webhook verification, retries, and a remediation flow when a user is declined.

Three integration paths, pick whichever fits your stack:

  • Embed natively with our Web, iOS, Android, React Native, or Flutter SDK.
  • Redirect the user to the hosted verification page, zero SDK.
  • Send a link by email, SMS, WhatsApp, or any channel, zero front-end work.

Same dashboard, same billing, same pay-per-success price for all three. Step-by-step guide at docs.didit.me/integration/integration-prompt.

Infrastructure for identity and fraud.

One API for KYC, KYB, Transaction Monitoring, and Wallet Screening. Integrate in 5 minutes.

Ask an AI to summarise this page