Skip to main content
Didit Raises $2M and Joins Y Combinator (W26)
Didit
Wallet Screening (KYT)

Screen any wallet.
$0.15 per check.

Check any wallet address or transaction hash for on-chain risk — sanctions, mixers, darknet exposure, source of funds. $0.15 per check, or bring your own screening provider.

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

Trusted by 2,000+ organizations worldwide.

$0.15 per check

On-chain wallet risk.
One public price.

Screen wallets at $0.15 per check, or bring your own screening provider and run it inside Didit — with one case queue and one audit trail across both.

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 crypto fraud · Open by design

Six capabilities. One module. $0.15 per check.

Wallet Screening lives inside Transaction Monitoring but also ships standalone. Every capability is part of the same module — switch them on per workflow or pass them inline on the API call.
01 · Providers

Bring your own screening provider.

Pick Didit-managed screening at $0.15 per check, or connect your existing screening-provider contract and run it inside Didit — you keep the relationship, we handle the orchestration. Configure the active provider per workspace.
Provider preferencesBring your own key
  • Didit-managed screening
    Connected · $0.15 / check
    Default
  • Your screening provider
    Connected · your key
  • Add another provider
    Available
02 · Pricing

One public price per check.

$0.15 per check, or bring your own screening provider. No minimums, no contracts, pay-per-success. 500 free verifications/month. Volume discounts apply automatically above 100,000 screenings/month.
Per-screening priceNo minimums
Didit-managed
$0.15/ screen
Pay-per-success · no contract
Bring your own provider
Your key
Run it inside Didit
One public price, no minimums$0.15 / check
03 · Risk scoring

Real-time wallet risk in sub-second.

Risk score 0–100, severity LOW/MEDIUM/HIGH/CRITICAL, source-of-funds breakdown across 14+ categories — sanctioned wallets, ransomware, stolen funds, darknet markets, mixers, scams, high-risk exchanges, gambling, peer-to-peer. Same shape, every provider.
Wallet · 0x9F2c...A41BCRITICAL
87
Risk score 0-100
Severity derived from score · sub-second
Source of funds
  • Sanctioned wallet28%
  • Mixer (Tornado Cash)12%
  • Regulated exchange48%
  • P2P12%
04 · Travel Rule

FATF Recommendation 16 and VASP compliance.

Send a Travel Rule block with the transaction and we handle structured-message exchange with supported counterparty VASPs (virtual asset service providers). Originator and beneficiary details, full audit trail, aligned with the EU Transfer of Funds Regulation.
Travel Rule · FATF R.16VASP to VASP
Originator VASP
Acme Crypto · ESP
Beneficiary VASP
Coinbase · USA
  • originator.full_name · date_of_birth
  • beneficiary.full_name · wallet_address
  • amount · currency · chain
05 · TM bundled

Chains straight into Transaction Monitoring.

Mark a transaction as crypto and we screen automatically — destination wallet pre-transfer on outbound, transaction hash post-transfer on inbound. High-risk hits feed the rules engine, the case queue, and the auto-remediation loop.
Transaction · OUTBOUND0.25 ETH
  • 1TM rule · velocity checkPASS
  • 2Wallet Screening · on-chain riskFLAG
  • 3Rule engine · status updateAWAITING_USER
Same workflow. One transaction call./v3/transactions/
06 · Coverage

Sanctions, OFAC, darknet, mixers, ransomware.

Every screen covers OFAC, EU, UN, and UK HM Treasury sanctions plus the underlying provider's darknet, ransomware, mixer, stolen-funds, scam, and terrorist-financing intelligence. Sanctioned wallets surface as a discrete flag so a rule can decline instantly.
Sanctions and adverse signalsContinuously refreshed
  • OFAC SDN
    US Treasury
    Active
  • EU consolidated
    European Council
    Active
  • UN sanctions
    United Nations
    Active
  • Darknet markets
    Provider intelligence
    Active
  • Ransomware wallets
    Provider intelligence
    Active
Integrate

Two endpoints. Same screening. Same price.

Pick the standalone endpoint for a one-off wallet lookup. Pick the transactions endpoint when you want the screen to feed the rule engine, the case queue, and auto-remediation. Both bill at $0.15 per check.
POST /v3/transactions/currency_kind: crypto
$ curl -X POST https://verification.didit.me/v3/transactions/ \
  -H "x-api-key: $DIDIT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "wallet_address": "0xRecipient...",
    "currency": "ETH",
    "direction": "OUTBOUND"
  }'
200OK{ "risk_score": 87, "severity": "CRITICAL" }
Synchronous response. No webhook needed.docs →
POST /webhooks/diditStep 2 · Receive
// Your endpoint receives a signed wallet-screening result
app.post("/webhooks/didit", (req, res) => {
  const sig = req.headers["x-signature-v2"];
  const expected = crypto.createHmac("sha256", SECRET)
    .update(req.rawBody).digest("hex");
  if (sig !== expected) return res.sendStatus(401);
  const { status, decision, txn_id } = req.body;
  // status: APPROVED | IN_REVIEW | DECLINED | AWAITING_USER
  res.sendStatus(200);
});
200OK{tI18n("webhookStatus")}
Real-time HMAC-signed webhook. Verify, parse, route high-risk hits to the rule engine.docs →
Agent-ready integration

Ship Wallet Screening 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, configures wallet screening at $0.15 per check, verifies signed webhooks, and feeds high-risk hits into Transaction Monitoring.
didit-integration-prompt.md
# Didit Wallet Screening (KYT) — integrate in 5 minutes

You are integrating Didit's Wallet Screening / Know Your Transaction (KYT)
module into <my_stack>. Follow these steps exactly. Every URL, header,
and enum value below is canonical — do not paraphrase or "improve" them.

Wallet Screening produces a standardised risk payload regardless of
which underlying provider sits behind it:
  - Risk score 0-100 + severity (LOW, MEDIUM, HIGH, CRITICAL)
  - Source of funds breakdown across 14+ categories
  - Exposure table (counterparty entities, direct vs indirect hops)
  - Network graph metrics
  - Sanctions / darknet / mixer flags as discrete signals

## 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/

## 2. Choose a screening source
- Wallet Screening runs at $0.15 per check on Didit's own on-chain
  risk data — nothing to configure, it works out of the box.
- Or bring your own screening provider and run it inside Didit: open
  Transactions > Settings > Provider Preferences in the Business
  Console (https://business.didit.me) and paste your existing
  provider API key. The screening result payload is identical
  whichever source you use.

## 3. Two integration paths — pick one

### Path A — Workflow / Transactions API (recommended)
Best when you want Wallet Screening chained into the Transaction
Monitoring rules engine so flagged transactions automatically generate
review cases.

POST https://verification.didit.me/v3/transactions/
Headers:
  x-api-key: <your-api-key>
  Content-Type: application/json
Body (outbound pre-transfer screen, screens the destination wallet):
  {
    "transaction_id": "withdrawal-001",
    "transaction_category": "finance",
    "include_crypto_screening": true,
    "transaction_details": {
      "direction": "OUTBOUND",
      "amount": "0.25",
      "currency": "ETH",
      "currency_kind": "crypto",
      "action_type": "withdrawal"
    },
    "subject": {
      "entity_type": "individual",
      "vendor_data": "user-123",
      "full_name": "John Doe"
    },
    "counterparty": {
      "entity_type": "unhosted_wallet",
      "full_name": "John Doe",
      "payment_method": {
        "method_type": "crypto_wallet",
        "account_id": "0xRecipientWallet..."
      }
    }
  }

Direction rules — required:
  - INBOUND  pre-transfer  -> screens counterparty.payment_method.account_id
  - INBOUND  post-transfer -> screens the tx hash scoped to subject.payment_method.account_id
  - OUTBOUND pre-transfer  -> screens counterparty.payment_method.account_id
  - OUTBOUND post-transfer -> screens the tx hash scoped to counterparty.payment_method.account_id

For post-transfer screening, also include
  transaction_details.payment_reference_id  -> the blockchain tx hash

### Path B — Standalone wallet-screening API
Best when you want a one-off wallet-risk lookup without writing a full
transaction. Same screening source, same $0.15 per check price.

POST https://verification.didit.me/v3/transactions/
Headers:
  x-api-key: <your-api-key>
  Content-Type: application/json
Body:
  {
    "wallet_address": "0xRecipientWallet...",
    "currency": "ETH",
    "direction": "OUTBOUND"
  }

Synchronous JSON response — no webhook required for the standalone call.
Use Path A whenever the screening result needs to flow into the rules
engine, case management, or the auto-remediation loop.

## 4. Webhooks
Register one webhook destination per workspace:

POST https://verification.didit.me/v3/webhook/destinations/
Body: { "url": "https://yourapp.com/didit/webhooks",
        "events": ["transaction.status.updated"] }

Every delivery carries an X-Signature-V2 Hash-based Message Authentication
Code (HMAC) header.  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.Verify it before trusting the payload:

  signature = hmac_sha256(secret, raw_body).hex()
  if signature != request.headers["X-Signature-V2"]:
      return 401

## 5. Reading the result
Every screening returns a standardised risk object:
  - risk_score (0-100, higher = more exposure)
  - severity ("LOW", "MEDIUM", "HIGH", "CRITICAL")
  - source_of_funds (array of { category, percentage })
  - exposure (array of { entity, hop_distance, received, sent, risk })
  - flags (array including "sanctioned", "darknet_market", "mixer",
           "ransomware", "child_exploitation", "scam", and others)
  - network_graph (nodes, edges, centrality, depth)

Feed flagged transactions into the Transaction Monitoring rules engine
so high-risk hits automatically generate cases at the published
$0.02 per transaction inspection rate.

## 6. Travel Rule (FATF Recommendation 16)
For Virtual Asset Service Provider (VASP) to VASP transfers, include
the Travel Rule payload alongside the transaction body:

  "travel_rule": {
    "originator_vasp": {...},
    "beneficiary_vasp": {...},
    "originator": { "full_name", "date_of_birth", ... },
    "beneficiary": { "full_name", "wallet_address" }
  }

Didit handles the structured-message exchange with supported counterparty
VASPs. Reference: https://docs.didit.me/transaction-monitoring/travel-rule

## 7. Hard rules — do not change
- Base URL stays  https://verification.didit.me  (NOT apx.didit.me).
- Auth header stays  x-api-key  (lowercase, hyphenated).
- Webhook signature header stays  X-Signature-V2  (NOT X-Signature).
- currency_kind is always  "crypto"  for wallet screening.
- direction is always UPPERCASE  ("INBOUND" or "OUTBOUND").
- severity casing stays UPPERCASE: LOW, MEDIUM, HIGH, CRITICAL.

## 8. Pricing reference
- $0.15 per wallet screening on Didit's own on-chain risk data — or
  bring your own screening provider and run it inside Didit.
- $0.02 per transaction inspected by the Transaction Monitoring rule
  engine. AML on flagged transactions at $0.20 per check.
- 500 free verifications every month on every account, forever.
- No minimums, no contracts. Volume discounts above 100k screenings
  per month — see https://didit.me/pricing.

## 9. Verify your integration
1. Create a sandbox API key at https://business.didit.me.
2. Post the example outbound transaction above against a known-flagged
   tutorial wallet — the response should have severity "CRITICAL" and
   carry a "sanctioned" flag.
3. Confirm the webhook fires with transaction.status.updated and the
   X-Signature-V2 header verifies cleanly.
4. Open Case Management in the console — the transaction should land
   in the queue with source PROVIDER and severity CRITICAL.

Done. Wallet Screening is live. Reach out to support@didit.me with the
workspace id if you hit a wall.
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.00
    Per check. Public price, no minimums.
  • BYO key
    Bring your own screening provider and run it inside Didit.
  • 0+
    Source-of-funds categories on every standardised payload.
  • Sub-1s
    On-chain wallet screen, end to end.
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