Skip to main content
Didit Raises $7.5M to Build the Infrastructure for Identity and Fraud
Didit
Bot Detection

Keep bots out with a Passive Liveness gate. One frame. One decision.

A single Passive Liveness check in front of any high-value action. Bots have no face to present, they cannot pass. Sub-two-second verdict, $0.10 per check, 500 free every month.

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

Trusted by 2,000+ organizations worldwide.

A dark abstract bot-detection stack, four floating translucent dark-glass panels in 3D perspective on pure black, threaded by a luminous Didit Blue vertical line and framed by glowing scanner brackets. Each panel carries one tiny pale-white abstract motif of the gate (robot head, flat waveform, anomaly grid, suspicious timing).

Why CAPTCHA stopped working

Solver farms beat CAPTCHA. Liveness still asks for a face.

Commercial CAPTCHA-solver farms clear hCaptcha and reCAPTCHA Enterprise for fractions of a cent. Passive Liveness asks for something a script does not have, a real human in front of a real camera. $0.10 per gate, sub-two-second, 500 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 the gate · Priced like infrastructure

One Passive Liveness check. $0.10 per gate.

A bot-gate is a composition, surface, pre-screen, liveness, decision. Toggle each module per workflow in the Workflow Builder.
01 · Attack surface

Where bots show up, and where the gate goes.

Sign-up forms, leaderboards, airdrop / token claims, referral payouts, comment sections, ticket queues. Same Workflow Builder workflow protects every surface. Trigger only on the actions that actually matter, day-to-day reads do not need a gate.
Workflow Orchestrator module
02 · Liveness gate

A real human in front of a real camera.

Passive Liveness asks the user to hold still for one frame. The model returns a verdict in under two seconds at $0.10 per check. No puzzles, no character recognition, no behavioural-mouse traces, just a frame and a decision. iBeta Level 1 PAD certified against ISO/IEC 30107-3.
Liveness module
03 · Attack-vector defence

Every bot vector, same verdict.

Headless Chrome with scripted submission, browser-automation farms, virtual-camera AI face injectors, pre-recorded screen replays, image-only submissions with no camera attached, AI-generated deepfakes, all blocked. The model is independently re-tested at iBeta every year as new vectors appear in the wild.
How Liveness works
04 · IP + device pre-screen

Skip the camera on the obvious bots.

Device & IP Analysis returns a 0–100 score plus Virtual Private Network (VPN), Tor, datacenter Autonomous System Number (ASN), headless-browser, and device-velocity flags. $0.03 per call, under 100ms. Decline up-front when the network is obviously scripted; only spend the liveness budget on plausible humans.
Device & IP Analysis module
05 · Reusable KYC replay

Once a human. Always a human.

Users who have already passed a Didit-verified session can replay the credential at no cost via Reusable KYC. No second camera permission, no friction, the gate stays in front of unknown traffic only. Free forever.
Reusable KYC module
06 · Webhook pipeline

Signed verdict. Three branches. Done.

A signed webhook lands with the verdict, Approved, Declined, In Review, Not Finished. Verify X-Signature-V2 with Hash-based Message Authentication Code (HMAC) SHA-256 before reading the body. 200+ fraud signals exposed at no extra cost. Branch the original action accordingly.
Webhook reference
Integrate

One session. One signed verdict. Three branches.

Open the gate. Read the signed verdict. Allow, block, or invite a retry.
POST /v3/session/Liveness
$ 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_bot_gate",
    "vendor_data": "signup-918",
    "metadata": { "surface": "signup_form" }
  }'
201Created{ "session_url": "verify.didit.me/..." }
Block the action until the webhook lands status: Approved.docs →
POST /webhooks/diditVerdict
// X-Signature-V2 verified upstream
if (payload.status === "Approved") {
  allowSignup(payload.vendor_data);
} else if (payload.status === "Declined") {
  throttleIP(payload.ip_analysis.ip);
  blockAndLog(payload.vendor_data);
}
200OKstatus Approved · Declined · In Review · Not Finished
Verify X-Signature-V2 before reading the payload.docs →
Agent-ready integration

Ship a Passive Liveness bot-gate in one prompt.

Paste into Claude Code, Cursor, Codex, Devin, Aider, or Replit Agent. Fill in your stack. The agent wires the trigger, opens the liveness session, verifies the webhook, and gates the action.
didit-integration-prompt.md
You are integrating Didit Passive Liveness as a bot-gate on a high-value action — sign-up, leaderboard submission, airdrop / token claim, referral payout, comment, or ticket queue. Bots cannot pass Passive Liveness because they have no face to present to the camera. One API call. One signed webhook. One decision.

WHY THIS SHAPE
  - Bots scale because they cost nothing per attempt. CAPTCHA stops the dumbest ones but commercial solver farms beat hCaptcha and reCAPTCHA Enterprise at fractions of a cent per solve.
  - Passive Liveness asks for something a script does not have: a live human face in front of a real camera. The model decides on one frame, in under two seconds, with no user interaction beyond "hold still".
  - $0.10 per check (Passive Liveness module). 500 verifications free every month. Combine with $0.03 IP / device pre-screen to keep the camera off the obvious bots and the budget on real candidates.

PRE-REQUISITES
  - Production API key from https://business.didit.me (sandbox key in 60 seconds, no credit card).
  - A webhook endpoint with HMAC SHA-256 verification of the X-Signature-V2 header using your webhook secret.
  - A Workflow Builder workflow containing the Passive Liveness module — optionally Device & IP Analysis pre-step.
  - The high-value action wrapped in a server-side gate that defaults to BLOCK and only unblocks on a verified webhook with status: Approved.

STEP 1 — (Optional) Cheap IP / device pre-screen
  Before opening a camera, score the network with Device & IP Analysis ($0.03 / call, under 100ms).
  If the score is low and no datacenter / VPN / scripted-user-agent flags fire, run Step 2.
  If the score is high or any of those flags fire, skip the liveness call and decline up-front — this saves the camera budget for plausible humans.

STEP 2 — Open a Passive Liveness session
  POST https://verification.didit.me/v3/session/
  Headers:
    x-api-key: <your api key>
    Content-Type: application/json
  Body:
    {
      "workflow_id": "<wf id with the Passive Liveness module>",
      "vendor_data": "<your action / user id, max 256 chars>",
      "callback": "https://<your-app>/bot-gate/callback",
      "metadata": {
        "surface": "signup_form",
        "action_id": "<your internal reference>"
      }
    }

  Response: 201 Created with a hosted session URL. Redirect inline (web) or open in a Software Development Kit (SDK) webview (mobile). The action stays BLOCKED on your side until the signed webhook lands.

STEP 3 — Read the signed webhook
  Didit POSTs the verdict. Verify X-Signature-V2 (HMAC SHA-256 of the raw body using your webhook secret) BEFORE reading the JSON.

  Payload (excerpted):
    {
      "session_id": "<uuid>",
      "vendor_data": "<your action / user id>",
      "status": "Approved",
      "liveness": { "status": "Approved" }
    }

  Session status enum (exact case, Title Case With Spaces): Approved | Declined | In Review | Resubmitted | Expired | Not Finished | Kyc Expired | Abandoned.

STEP 4 — Branch the action
  Approved      → allow the sign-up / claim / submission.
  Declined      → block the action. Log liveness warnings (image-only / virtual-cam / replay / deepfake) and throttle the source IP.
  Not Finished  → invite the user to retry with a fresh session URL.
  Expired       → session timed out. Resend the link.
  Abandoned     → the user closed the flow before completing. Resend the link.

STEP 5 — (Optional) Replay Reusable Know Your Customer (KYC) for known humans
  If a user has previously completed a Didit-verified session, a fresh liveness check is not required for re-entry — they can replay their verified credential at no cost via Didit Reusable KYC. Use the user's existing session_id to confirm enrollment and skip Step 2. Free forever.

WEBHOOK EVENT NAMES
  - Sessions: standard session webhook. One endpoint, status field tells you where in the lifecycle.
  - Verify X-Signature-V2 (HMAC SHA-256) on every payload.

WHAT GETS BLOCKED
  - Headless Chrome with scripted form submission
  - Browser-automation farms (Puppeteer, Playwright, Selenium)
  - Image-only submissions (no camera attached)
  - Virtual-camera AI face injectors
  - Pre-recorded screen replays
  - Print or paper attacks
  - Silicone / latex masks
  - AI-generated deepfake faces

  All independently tested at iBeta and certified at Level 1 Presentation Attack Detection (PAD) against the full ISO/IEC 30107-3 catalogue. Re-tested every year.

CONSTRAINTS
  - Session statuses use Title Case With Spaces. Never use UPPER_SNAKE_CASE for session verdicts — that's the Transactions API.
  - Default to BLOCK on the server. Only unblock when the verified webhook says Approved.
  - 200+ fraud signals are evaluated on every session at no extra cost — read them off the decision payload, don't re-query.

Read the docs:
  - https://docs.didit.me/sessions-api/create-session
  - https://docs.didit.me/core-technology/liveness/overview
  - https://docs.didit.me/core-technology/ip-analysis/overview
  - https://docs.didit.me/core-technology/reusable-kyc/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
  • iBeta L1
    Independently certified Presentation Attack Detection, re-tested every year.
  • <0s
    Verdict end-to-end on entry-level Android.
  • $0.00
    Per Passive Liveness check. $0.03 optional IP pre-screen on top.
  • 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

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.

What counts as a bot in this context?

Anything that submits a form, claims a payout, posts a comment, or buys a ticket without a real human in the loop. Common shapes:

  • Headless browsers scripted with Puppeteer, Playwright, Selenium
  • Browser-automation farms running thousands of cheap residential proxies
  • AI bots with virtual cameras feeding generated faces into a sign-up flow
  • API scripts calling your back-end directly with stolen or guessed payloads

The defining trait is the same: nobody is looking at the screen, so nobody is in front of the camera.

Why has CAPTCHA stopped working?

CAPTCHA solver farms beat hCaptcha and reCAPTCHA Enterprise for fractions of a cent per solve. The economics flipped years ago, a 1,000-account attack costs the attacker less than your monthly Software-as-a-Service (SaaS) bill for the CAPTCHA itself.

The deeper problem is that CAPTCHA tests a skill (image recognition, character recognition, click patterns) that machines now do better than humans. A bot-gate has to test something machines do not have. A live human face in front of a real camera is exactly that.

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.

What attack vectors does it actually block?

Every common bot vector:

  • Headless Chrome with scripted form submission
  • Browser-automation farms (Puppeteer, Playwright, Selenium)
  • Image-only submissions with no camera attached
  • Virtual-camera AI face injectors feeding generated frames
  • Pre-recorded screen replays from a second device
  • Print / paper held up to the camera
  • Silicone / latex masks worn by a human accomplice
  • AI-generated deepfakes of a target account owner

All caught at the Passive Liveness layer. Nothing for the bot to feed in.

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.

Do I need a fresh check on every user every time?

No. Users who have already passed a Didit-verified session can replay the credential at no cost via Reusable KYC, free forever. Look up the user's prior session_id; if the credential is valid, skip the live gate.

That keeps the friction (and the cost) on traffic you have never seen before. Returning humans pass instantly.

How much does the gate cost?

Two line items:

  • Passive Liveness check: \$0.10 per session
  • Device & IP Analysis pre-screen (optional): \$0.03 per call

500 verifications free every month on every account, most teams sit inside the free tier for weeks. Returning users via Reusable KYC are free forever. No minimums, no annual commitment, no per-seat pricing.

Which surfaces ship this gate?

Anywhere a single bot submission costs the team money or reputation:

  • Marketplace / fintech sign-up forms, to keep disposable accounts out
  • Airdrop / token claims, to keep sybil wallets out
  • Leaderboards / ranking systems, to keep score-pump farms out
  • Referral payouts, to keep self-referral cycles out
  • Comment + review systems, to keep astroturf out
  • Ticket queues, to keep scalper bots out

One workflow, every surface.

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