Skip to main content
Didit Raises $2M and Joins Y Combinator (W26)
Didit
Employee onboarding

Onboard a hire. In one hire link.

One Didit session collects identity, right-to-work documents, AML, and HR forms before day one. ~$0.50 per hire. 500 verifications free every month.

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

Trusted by 2,000+ organizations worldwide.

A cinematic dark abstract employee-onboarding stack illustration — four floating translucent glass panels in 3D perspective on pure black, threaded by a luminous Didit Blue line and framed by four glowing scanner brackets. Each panel carries a small pale-white abstract motif (employee badge silhouette, checklist, fingerprint, key).

What HR owes

Verify the hire. Collect the forms. Before day one.

Every hire needs identity, right-to-work documents, an AML check, and a stack of HR forms. Didit bundles all four into one link at offer-stage — $0.33 KYC + $0.20 AML + $0.10 questionnaire ≈ $0.50 per hire. Verdict pipes back to your ATS via signed webhook. 500 verifications free every month.

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 HR · Priced like infrastructure

Six checks. One link. ~$0.50 per hire.

A new-hire packet isn't a single check — it's a recipe. Toggle each module per role band, retain the artefacts under one policy, ship the verdict into your ATS.
01 · Hire bundle

Identity in one call.

ID, liveness, face match, device + IP — bundled to $0.33 per hire. iBeta Level 1 anti-spoof certified, sub-two-second verdict, supports 14,000+ documents across 220+ countries.
User Verification module
02 · Right-to-work

Passport, residence permit, share code.

Document type auto-detected by issuing country. OCR + Machine-Readable Zone (MRZ) parse + tamper-check on every page. Retention is jurisdiction-configurable — UK 2 years, US 3 years, EU 5 years.
ID Verification module
03 · Background AML

Screen every hire against 1,300+ lists.

Sanctions, Politically Exposed Persons (PEP), and adverse media in 14 languages, refreshed daily. Hits open a People Ops case automatically — gate provisioning before day one.
AML Screening module
04 · HR questionnaire

NDA, code of conduct, tax forms — same link.

Custom Questionnaires lets you collect any signed HR document inside the same session as the identity capture. $0.10 per stack. One audit pack, one retention rule, one signature workflow.
Questionnaires module
05 · ATS / HRIS integration

Verdict back to your stack.

Signed webhook drops the verdict into Greenhouse, Workday, Lever, Rippling, BambooHR, HiBob — or your Identity Provider (Okta, Google Workspace, Microsoft Entra). Branch the workflow per role band.
Workflow Orchestrator
Integrate

One session. One webhook. One audit pack.

Open the hire session at offer-stage. Read the signed verdict from the webhook. Pipe it into your ATS.
POST /v3/session/Hire
$ 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_hire_offer_stage",
    "vendor_data": "hire-9241",
    "metadata": { "ats_application_id": "greenhouse-A-12" }
  }'
201Created{ "session_url": "verify.didit.me/..." }
Hold day-one provisioning until the webhook says status: Approved.docs →
POST /webhooks/diditVerdict
// X-Signature-V2 verified upstream
if (payload.status === "Approved") {
  ats.markBackgroundClear(payload.vendor_data);
  provisionAccounts(payload.vendor_data);
} else if (payload.status === "In Review") {
  peopleOps.openCase(payload);
}
200OKstatus Approved · Declined · In Review · Kyc Expired
Verify X-Signature-V2 before reading the payload.docs →
Agent-ready integration

Ship employee onboarding in one prompt.

Paste into Claude Code, Cursor, Codex, Devin, Aider, or Replit Agent. Fill in your stack. The agent builds the workflow, sends the offer-stage link, reads the verdict, pipes it to the ATS, and enrols ongoing monitoring.
didit-integration-prompt.md
You are integrating Didit into a HR / People Ops stack to onboard every new hire. ONE obligation, ONE Didit session:

  Verify the hire's identity (Know Your Customer (KYC)) — ID document, liveness, face match, AML against 1,300+ sanctions / Politically Exposed Person (PEP) / adverse-media lists — AND collect any HR-specific document (NDA, code of conduct, tax form, work-visa share code) in the same flow.

Bundle pricing (verified live, 2026-05-16):
  - Full KYC bundle: $0.33 per hire (ID + Liveness + Face Match + Device & IP)
  - AML Screening: $0.20 per hire
  - HR Questionnaire: $0.10 per hire (per stack of HR forms)
  - Total: ~$0.50 per fully-onboarded hire — public price, no minimums
  - First 500 verifications free every month, forever
  - Ongoing AML on the active workforce: $0.07 per user per year, automatic

PRE-REQUISITES
  - Production API key from https://business.didit.me (sandbox key in 60s, no card).
  - Webhook endpoint with HMAC SHA-256 verification using the X-Signature-V2 header and your webhook secret.
  - A workflow_id from the Workflow Builder that bundles ID Verification + Passive Liveness + Face Match 1:1 + AML Screening + the HR Questionnaire of choice.
  - (Optional) ATS or HRIS — Greenhouse, Workday, Lever, Rippling, BambooHR, HiBob — to receive the verdict.

STEP 1 — Open the hire session at offer-stage

  POST https://verification.didit.me/v3/session/
  Headers:
    x-api-key: <your api key>
    Content-Type: application/json
  Body:
    {
      "workflow_id": "<wf id with KYC + AML + HR Questionnaire>",
      "vendor_data": "<your applicant id, max 256 chars>",
      "callback": "https://<your-app>/hire/kyc/callback",
      "metadata": {
        "purpose": "employee_onboarding",
        "role_band": "engineering_ic",
        "country_of_work": "ES",
        "ats_application_id": "<your ATS reference>"
      }
    }

  Response: 201 Created with a hosted session URL. Email or text the URL to the candidate when the offer letter goes out. Sub-2-second median verdict on completion.

STEP 2 — Read the signed webhook when the candidate finishes

  Didit POSTs to your callback. Session statuses are Title Case With Spaces:

  Body (excerpted):
    {
      "session_id": "<uuid>",
      "vendor_data": "<your applicant id>",
      "status": "Approved",
      "id_verification": { "status": "Approved", "document_type": "Passport" },
      "liveness": { "status": "Approved" },
      "face": { "status": "Approved", "similarity_score": 0.94 },
      "aml": { "status": "Approved", "hits": [] },
      "questionnaire": { "status": "Approved", "answers": { ... } }
    }

  Status enum (exact case): Approved | Declined | In Review | Resubmitted | Expired | Not Finished | Kyc Expired | Abandoned.

  Verify the X-Signature-V2 header BEFORE reading the body — HMAC SHA-256 of the raw bytes with your webhook secret.

STEP 3 — Branch on the verdict

  Approved          → forward to ATS / HRIS as "background-clear", trigger day-one provisioning.
  In Review         → route to People Ops queue for manual review; pause start-date confirmation.
  Declined          → escalate to compliance; halt the hire pending re-screen or rescind offer.
  Resubmitted       → applicant uploaded a second time after a soft rejection — re-read.
  Kyc Expired       → session went stale; send a new session URL.

STEP 4 — Ongoing AML on the active workforce is automatic

  Every Approved hire is re-screened DAILY by Didit's continuous monitoring at $0.07 per user per year. NO separate endpoint to call — the original session is what gets monitored.

  When a previously-clear employee crosses an AML threshold (new sanction listing, new adverse-media hit, PEP status change), the session status changes to "In Review" or "Declined" and your webhook fires the update. Pipe that event back into your HRIS for People Ops triage.

WEBHOOK EVENT NAMES
  - Sessions: status changes flow through the standard session webhook.
  - Ongoing AML updates: same session webhook fires when the verdict flips post-onboarding.

  Verify X-Signature-V2 on every payload.

CONSTRAINTS
  - Session statuses use Title Case With Spaces (Approved, In Review). Do not lowercase or snake_case them.
  - HR documents collected via Questionnaire are retained alongside the identity capture — one audit pack, one retention policy. Default retention is 5 years post-employment per the EU AML package; align with your jurisdiction.
  - 200+ fraud signals are evaluated on every KYC session at no extra cost.
  - The session URL is single-use; if a candidate abandons mid-flow, create a new session for the retry.

Read the docs:
  - https://docs.didit.me/sessions-api/create-session
  - https://docs.didit.me/core-technology/aml-screening/overview
  - https://docs.didit.me/core-technology/questionnaires/overview
  - https://docs.didit.me/integration/webhooks

Start free at https://business.didit.me — sandbox key in 60 seconds, 500 verifications free every month, no credit card.
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.50
    Per fully-onboarded hire — KYC bundle + AML + HR questionnaire.
  • 0+
    Sanctions, Politically Exposed Persons (PEP), and adverse-media lists screened on every hire.
  • <0s
    End-to-end verdict per session, on entry-level Android.
  • 0
    Free verifications every month, on every account.
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

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