免费
每月 $0。无需信用卡。
- 免费 KYC 套件(身份验证 + 被动活体检测 + 人脸匹配 + 设备与 IP 分析), 每月 500 次,永久有效
- 黑名单用户
- 重复检测
- 每次会话 200+ 欺诈信号
- Didit 网络中可重复使用的 KYC
- 案件管理平台
- 工作流构建器
- 公开文档、沙盒、SDK、MCP(模型上下文协议)服务器
- 社区支持


全球2,000多家组织信赖。

BSA 的要求
所有美国金融机构都必须对每笔交易进行实时监控, 并在发现可疑活动后 30 天内提交可疑活动报告 (SAR)。Didit 提供 规则引擎、案例状态机、自动修复循环以及 FinCEN 格式的导出功能, 每笔交易调用仅需 $0.02。每月免费 500 次验证。
选择您需要的检查项, 身份、活体、人脸匹配、制裁、地址、年龄、电话、电子邮件、自定义问题。在控制台中拖放以创建流程,或通过我们的 API 发布相同的流程。支持条件分支、A/B 测试,无需代码。
通过我们的 Web、iOS、Android、React Native 或 Flutter SDK 进行原生嵌入。重定向到托管页面。或者直接通过电子邮件、短信、WhatsApp 等任何方式向用户发送链接。选择适合您技术栈的方式。
Didit 负责托管摄像头、光线提示、移动端切换和无障碍功能。在用户进行流程时,我们实时评估 200 多个欺诈信号,并根据权威数据源验证每个字段。结果在两秒内返回。
实时签名 Webhook 可确保用户获批、拒绝或发送审核时,您的数据库立即同步。按需轮询 API。或者打开控制台,检查每个会话、每个信号,并按您的方式管理案例。
Didit · 交易监控
Didit · 案件管理
开放
警报触发
T+0s
调查中
分析师 K. 分配
T+4m
SAR_已提交
分析师 K. + 专员 M.
T+2h
已关闭
专员 M.
T+24h
Didit · SAR 导出
Didit · 等待用户
Didit · 案件控制台
Didit · 留存堆栈
$ curl -X POST https://verification.didit.me/v3/transactions/ \
-H "x-api-key: $DIDIT_API_KEY" \
-d '{
"transaction_id": "tx-9001",
"transaction_details": { "direction": "OUTBOUND", "currency": "USD", "amount": 9500 },
"subject": { "full_name": "J. Doe" },
"counterparty": { "full_name": "Counterparty" }
}'状态 APPROVED · IN_REVIEW · DECLINED · AWAITING_USER$ curl https://verification.didit.me/v3/transactions/$TXN/ \
-H "x-api-key: $DIDIT_API_KEY"
# 返回完整的案例负载,
# 标记的交易、主体 KYC、
# 交易对手、行为上下文、
# 审查员叙述、HMAC 签名。
# 映射到 FinCEN SAR XML 架构。案例 OPEN · INVESTIGATING · SAR_FILED · CLOSEDYou are integrating Didit into a US financial institution (bank, money services business, crypto VASP, broker-dealer, casino, mortgage lender) to satisfy Bank Secrecy Act monitoring + Suspicious Activity Report (SAR) filing under the Financial Crimes Enforcement Network (FinCEN). Three obligations:
1. Monitor every transaction in real time against the eleven seeded rule bundles (structuring, velocity, mule patterns, geographic risk, sanctioned counterparties, etc.).
2. Open and manage cases on every flagged transaction.
3. Export the SAR-ready package matching the FinCEN SAR XML schema for filing via the BSA E-Filing System.
Pricing (verified live 2026-05-16):
- Transaction Monitoring: $0.02 per transaction call
- Anti-Money Laundering (AML) Screening on flagged subjects: $0.20 per check, $0.07 per user per year for ongoing monitoring
- User Verification (Know Your Customer (KYC)) for remediation: $0.33 per check
- First 500 verifications free every month, forever
PRE-REQUISITES
- Production API key from https://business.didit.me (sandbox key in 60 seconds, no credit card).
- Webhook endpoint with HMAC SHA-256 verification of the X-Signature-V2 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. - A workflow_id for KYC sessions (used on remediation), and Transaction Monitoring + Case Management enabled in the Business Console.
- Optional: integration with the BSA E-Filing System on your back-end OR push to your existing investigation tool (Actimize, NICE, Quantexa, ComplyAdvantage Workflow).
STEP 1 — Monitor every transaction with the Transactions API
POST https://verification.didit.me/v3/transactions/
Headers:
x-api-key: <your api key>
Content-Type: application/json
Body (required fields verified live 2026-05-16):
{
"transaction_id": "<your internal transaction id>",
"transaction_category": "finance",
"transaction_details": {
"direction": "OUTBOUND",
"amount": "9500",
"currency": "USD",
"currency_kind": "fiat",
"action_type": "payment"
},
"subject": {
"entity_type": "individual",
"vendor_data": "<your user id>",
"full_name": "<user name from verified KYC>"
},
"counterparty": {
"entity_type": "individual",
"full_name": "<counterparty name if known>",
"payment_method": {
"method_type": "wire",
"account_id": "<counterparty account or routing reference>"
}
}
}
REQUIRED fields the API rejects if missing:
- subject.vendor_data + subject.full_name
- counterparty.full_name
- transaction_details.direction + currency + currency_kind + amount
Response shape (excerpted from a real successful 201):
{
"uuid": "<server transaction uuid>",
"txn_id": "<your transaction_id echoed back>",
"status": "APPROVED",
"score": 0,
"severity": null,
"cost_breakdown": {
"total_price": 0.02,
"items": [{ "usage_type": "transaction_monitoring", "price": 0.02 }]
}
}
Transaction status enum (exact case, UPPER_SNAKE_CASE): APPROVED | IN_REVIEW | DECLINED | AWAITING_USER.
STEP 2 — Branch on the verdict
APPROVED → clear the transaction. Webhook may still update later if Ongoing Monitoring catches a delayed signal.
IN_REVIEW → hold the transaction. Case opens automatically in the Business Console for analyst triage.
DECLINED → refuse the transaction. Case opens at SAR-candidate priority.
AWAITING_USER → the workflow needs more data from the customer (source of funds, updated address, refreshed selfie). The response includes a remediation verification URL — send it to the customer.
STEP 3 — Handle AWAITING_USER auto-remediation
Push the verification URL on the response to the customer (email, app deep-link, push notification). They complete the additional verification in hosted flow on their phone.
On completion:
- The remediation session is LINKED to the original transaction (you'll see the linkage in both webhooks).
- Didit re-runs the relevant rules with the new evidence.
- The transaction moves to APPROVED (clear) or DECLINED (case opens for SAR consideration).
The whole loop takes minutes for the user; your team only touches the cases that genuinely need human judgement.
STEP 4 — Case Management — every flagged transaction opens a case
Cases live in the Business Console with a state machine:
OPEN → alert fires, no reviewer yet
INVESTIGATING → reviewer assigned, gathering context
SAR_FILED → SAR exported and filed; case awaits regulator response
CLOSED → case resolved, no SAR (with reviewer notes explaining why)
Each transition is signed, timestamped, and attributed (analyst name + officer name).
Per case, you get:
- The flagged transaction(s) + the rule(s) that fired
- The subject's verified KYC bundle (document, biometric, AML, device + IP)
- The counterparty data (for crypto: wallet screen; for fiat: counterparty identity if known)
- Behavioural context (user's transaction history, baseline, velocity)
- Reviewer narrative (analyst notes, decisions, escalations)
STEP 5 — Export the SAR package
Two paths:
Path A — Direct from the Console
Click "Export SAR XML" on a case. You get a downloadable package matching the FinCEN SAR XML schema. Upload through the BSA E-Filing System manually.
Path B — Via API + your back-end
GET https://verification.didit.me/v3/transactions/{id}/
Headers:
x-api-key: <your api key>
The full case payload — every field above — is returned as JSON. Map to the FinCEN schema in your back-end and POST to the BSA E-Filing System programmatically.
STEP 6 — Webhook event names
Sessions: standard session webhook for remediation completions (verify X-Signature-V2).
Transactions:
- transaction.created
- transaction.updated
- transaction.status.changed
- transaction.alert.generated
Every payload signed with X-Signature-V2 HMAC SHA-256.
STEP 7 — Ongoing AML monitoring is automatic on every verified subject
Every approved user is re-screened daily against 1,300+ sanctions, PEP, and adverse-media lists at $0.07 per user per year on heavy-volume accounts. When a previously-clean subject crosses an AML threshold, a transaction.alert.generated webhook fires and a case opens automatically.
CONSTRAINTS
- Session statuses Title Case With Spaces; transaction statuses UPPER_SNAKE_CASE. Don't mix.
- SAR filing deadlines: 30 days from detection (extendable by 30 days for suspect identification).
- SAR thresholds: $5,000 aggregate transaction for banks; $2,000 for money services businesses.
- BSA retention: 5 years on every SAR + supporting documentation.
- Tipping-off: NEVER disclose the SAR filing to the subject. Encode this in your customer-comms workflow.
- Default record retention is indefinite while subscribed; configurable per workflow if your supervisor mandates a specific duration.
Read the docs:
- https://docs.didit.me/transaction-monitoring/overview
- https://docs.didit.me/transaction-monitoring/transactions
- https://docs.didit.me/transaction-monitoring/aml-screening
- https://docs.didit.me/sessions-api/create-session
- 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.每月 $0。无需信用卡。
按实际用量付费。25+模块。公开的模块定价,无每月最低费用。
定制MSA和SLA。适用于大批量和受监管项目。
免费开始 → 仅在检查运行时付费 → 解锁企业版以获取定制合约、SLA 或数据驻留。
Didit是身份和欺诈基础设施, 是我们自己在构建产品时希望存在的平台:开放、灵活且对开发者友好,因此它能真正成为您技术栈的一部分,而不是一个您需要围绕其集成的黑盒。
一个API涵盖了人员验证(KYC,了解您的客户)、企业验证(KYB,了解您的企业)、加密钱包筛选(KYT,了解您的交易)以及实时交易监控, 基于一个旨在实现以下目标的堆栈:
底层支持:14,000多种文档类型,支持48种以上语言,1,000多个数据源,以及每次会话的200多个欺诈信号。Didit基础设施从每次会话中动态学习,并每天都在改进。
《银行保密法》(BSA)是美国反洗钱的基础法律,于1970年通过并多次修订。它要求美国金融机构通过保存记录、报告可疑活动和报告大额现金交易来帮助政府侦查和预防洗钱。
该规则由美国财政部下属的金融犯罪执法网络(FinCEN)执行。检查由机构的主要联邦监管机构进行, 国家银行由OCC负责,州成员银行由美联储负责,州非成员银行由联邦存款保险公司(FDIC)负责,信用合作社由国家信用合作社管理局(NCUA)负责,经纪自营商由SEC + FINRA负责。
2020年,《2020年反洗钱法》使该制度现代化, 增加了受益所有权报告、将监管范围扩大到古董经销商,并在此基础上叠加了《企业透明度法案》。
可疑活动报告(SAR)是美国金融机构在发现可能表明洗钱、欺诈、恐怖主义融资或其他犯罪活动的交易或模式时,向FinCEN提交的一份保密文件。
提交规则:
FinCEN使用SAR来建立调查线索;FBI、IRS-刑事调查和DEA等机构不断查询该数据库。
整个流程通常在30秒内完成, 拿起身份证,拍摄证件,拍摄自拍,完成。这是市场上最快的速度。传统的KYC提供商通常需要90秒以上才能完成相同的流程。
在后端,Didit在p99下两秒内返回结果,从用户完成自拍到您的webhook触发。移动端捕获针对慢速手机和慢速网络进行了优化:渐进式图像压缩、延迟软件开发工具包加载,以及如果用户从网页开始,通过二维码从桌面到手机的一键切换。
FinCEN的SAR指南涵盖了许多类别;常见的有:
FinCEN期望基于规则和行为的检测,而不仅仅是核对清单。一个真正的交易监控程序会根据客户群和机构的风险状况调整规则。
每个会话都会落入七种明确状态之一,因此您的代码始终知道该怎么做:
Approved, 所有检查通过。让用户继续。Declined, 一项或多项检查失败。您可以允许用户重新提交特定的失败步骤(例如,重新拍摄自拍),而无需重新运行整个流程。In Review, 标记为合规审查。在控制台中打开案例,查看所有信号,决定批准或拒绝。In Progress, 用户正在流程中。Not Started, 链接已发送,用户尚未打开。如果长时间未打开,发送提醒。Abandoned, 用户打开了链接但未及时完成。重新激活或使其过期。Expired, 会话链接已过期。创建新会话。每次状态更改都会触发签名webhook,因此您的数据库始终保持同步。放弃和拒绝的会话是免费的。
生产数据默认在欧盟(Amazon Web Services)进行处理和存储。企业合同可以根据监管机构要求,申请在其他区域存储。
无处不在的加密。所有数据库、对象存储和备份均采用AES-256静态加密。所有API调用、webhook和业务控制台会话均采用传输层安全1.3动态加密。生物识别数据在单独的客户主密钥下加密。
保留期限由您控制。默认保留期限为无限期(无限制),除非您配置更短的期限, 每个应用程序可在30天到10年之间, 您可以随时从仪表板或API删除任何单个会话。
认证:SOC 2 Type 1(Type 2审计进行中)、ISO/IEC 27001:2022、iBeta Level 1 PAD,以及西班牙财政部/SEPBLAC/CNMV的公开证明,表明Didit的远程身份验证比亲自验证更安全。完整报告请访问/security-compliance。
Didit默认符合对身份基础设施至关重要的监管机构要求:
详细备忘录、所有证书、所有监管机构函件:/security-compliance。
三种集成路径, 选择最适合您技术栈的方式:
所有三种方式都使用相同的仪表板、相同的计费方式和相同的按成功次数付费价格。分步指南请访问docs.didit.me/integration/integration-prompt。
常见的监控结果是我们需要客户提供更多信息才能清算此交易, 资金来源证明、更新的地址、重新验证的自拍。
传统系统迫使您的运营团队手动处理:给客户发邮件、等待、催促、重新筛选。AWAITING_USER自动补救功能自动完成闭环:
AWAITING_USER,响应中包含一个补救验证URL。APPROVED;如果未通过,则变为DECLINED,并打开案例以供SAR考虑。最终效果:以前需要几天才能完成的补救循环现在只需几分钟,审计追踪完整,您的团队只处理真正需要人工判断的案例。
Didit生成可用于SAR的证据;您可以使用您已有的任何申报和调查工具。
集成模式:
Didit的接口有意地保持狭窄:它捕获、评分、监控、打开案例并存储证据。SAR文件是离开Didit还是您的下游系统,由您决定。
BSA 要求每份 SAR 及其支持文件保留5 年记录。Didit 的默认设置如下:
Didit 已通过 SOC 2 Type 1 和 ISO/IEC 27001 认证,审计报告和控制目录可在签署 NDA 后通过 /security-compliance 获取。对于美国机构,平台在职责分离、静态加密和访问日志记录方面符合 FFIEC 信息技术指南中审查员的要求。