Didit
注册获取演示

可重复使用的 KYC

验证一次。安全地、经同意地在任何地方重复使用

Didit 可重复使用的 KYC 允许用户和企业重复使用已完成的身份验证,而不是从头开始重复 KYC。将入职时间从几分钟缩短到几秒钟,同时保持强大的安全性、可审计性和合规性。

受到全球1000多家公司的信赖

GBTC Finance
Bondex
Crnogorski Telekom
CrediDemo
Shiply
Adelantos
几秒钟

重复使用身份验证

(而非完整的 KYC)

生物识别

重新认证

(重复使用时的面部检查)

eIDAS2 就绪

合规性对齐

(审计与同意)

工作原理

使用 Didit 重复使用 KYC 的两种方式

Didit 可重复使用的 KYC

团队采用可重复使用 KYC 的原因

更好的转化率

消除重复的 KYC 摩擦

用户无需再次上传文件。重复使用已验证的数据可减少用户流失,并显著提高注册转化率。

用户控制

同意驱动的共享

用户在重复使用其 KYC 数据时明确表示同意。他们可以控制共享的内容和时间。

面向企业

专为合作伙伴生态系统设计

可重复使用的 KYC 非常适合需要跨服务进行身份可移植性的集团、市场、金融生态系统和合作伙伴平台。

可审计

完整的可追溯性

所有重复使用事件都会被记录,包括源应用程序、目标应用程序、时间戳、同意情况和导入的数据 — 支持审计和监管审查。

Auditable

完全 透明

功能定价

无需 🛠️ 设置费用。无需 💸 最低消费。无需 🎊 意外收费。只有清晰明确的定价 ✨ 仅对已完成的功能收费。

translation_v12.pricing.features.reusableKyc.title
可重复使用 KYC为拥有经过验证的 Didit ID 的用户提供一条快速通道。它允许他们安全地同意和共享预先验证的凭据,在几秒钟内完成 KYC。
免费

最容易 集成

以你的方式集成Didit

使用无代码或通过单个API调用使用Didit。在几分钟内上线。

无代码

使用预构建的验证链接,立即运行完整的KYC流程 — 无需工程工作。

只需共享一个链接,并通过webhooks或在控制台中接收结果。

关键点

  • 无需开发
  • 预构建、移动优化的流程
  • 在控制台中控制
  • 实时决策 + webhooks
查看文档
Didit 控制台

BUILT FOR AI AGENTS

Integrate with just one prompt

The only identity platform your AI coding agent can fully integrate — credentials, workflows, webhooks, and production code — without opening a browser.

Claude CodeClaude Code
CursorCursor
GitHub CopilotGitHub Copilot
DevinDevin
OpenHandsOpenHands

One prompt. Full integration.

Paste this into Claude Code, Cursor, or Copilot. Your agent registers for API credentials, creates verification workflows, sets up webhooks, and writes integration code — end to end, from a single copy-paste.

Key points

  • Full API reference with every endpoint
  • Programmatic registration — no browser needed
  • All 5 SDK install commands included
  • 12 standalone APIs for granular control
View documentation
didit-integration.md
Integrate Didit identity verification into this project.

Didit is an all-in-one identity platform. Docs: https://docs.didit.me
Base URL: https://verification.didit.me/v3
Auth API: https://apx.didit.me/auth/v2


## Step 1: Get API credentials (no browser needed)

Register programmatically — 2 API calls:

POST https://apx.didit.me/auth/v2/programmatic/register/
Body: { "email": "dev@yourapp.com", "password": "SecurePass123!" }
→ Sends 6-char OTP to email

POST https://apx.didit.me/auth/v2/programmatic/verify-email/
Body: { "email": "dev@yourapp.com", "code": "ABC123" }
→ Returns { api_key, organization, application }

Or login if already registered:
POST https://apx.didit.me/auth/v2/programmatic/login/
Body: { "email": "...", "password": "..." }
→ Returns { access_token, refresh_token }

All subsequent API calls use: x-api-key: YOUR_API_KEY


## Step 2: Create a verification workflow

POST https://verification.didit.me/v3/workflows/
Headers: { "x-api-key": "YOUR_API_KEY", "content-type": "application/json" }
Body: {
  "name": "KYC Flow",
  "features": {
    "id_verification": true,
    "passive_liveness": true,
    "face_match": true,
    "aml_screening": false,
    "nfc": false,
    "ip_analysis": true,
    "phone_verification": false,
    "email_verification": false,
    "proof_of_address": false,
    "age_estimation": false,
    "database_validation": false,
    "questionnaire": false
  }
}
→ Returns { uuid: "workflow_id", ... }

Or list existing workflows: GET /v3/workflows/


## Step 3: Create verification sessions

POST https://verification.didit.me/v3/sessions/
Body: {
  "workflow_id": "WORKFLOW_ID",
  "vendor_data": "your-internal-user-id",
  "callback": "https://yourapp.com/api/didit/webhook"
}
→ Returns {
    session_id, session_token, session_number,
    url: "https://verify.didit.me/session/TOKEN"
  }

Redirect users to the url, or embed via SDK:
- Web: npm install @didit-protocol/sdk-web
- React Native: npx expo install @didit-protocol/sdk-react-native
- iOS: SPM github.com/didit-protocol/sdk-ios
- Android: me.didit:didit-sdk:3.2.0
- Flutter: flutter pub add didit_sdk


## Step 4: Get results

Option A — Webhook (recommended):
Configure callback URL. Didit sends POST with session data when status changes.
Verify webhook signature using your webhook secret (GET /v3/webhook/).

Option B — Poll:
GET https://verification.didit.me/v3/sessions/{session_id}/

Session statuses: Pending → In Progress → Approved | Declined | In Review | Expired

You can also: update status (PATCH /v3/sessions/{id}/status/),
generate PDF reports (POST /v3/sessions/{id}/generate-pdf/),
or delete sessions (DELETE /v3/sessions/{id}/).


## Standalone APIs (call individually without sessions)

POST /v3/id-verification/ — Submit document images, get OCR + authenticity
POST /v3/passive-liveness/ — Verify person is real from selfie
POST /v3/face-match/ — Compare two faces (similarity 0-100)
POST /v3/face-search/ — 1:N search against all approved sessions
POST /v3/age-estimation/ — Estimate age from face
POST /v3/aml-screening/ — Screen against 1,300+ watchlists
POST /v3/proof-of-address/ — Extract + validate address documents
POST /v3/database-validation/ — Government DB checks (18+ countries)
POST /v3/email/send/ + /v3/email/check/ — Email OTP
POST /v3/phone/send/ + /v3/phone/check/ — Phone OTP (SMS/WhatsApp)


## Pricing

Free core KYC: ID Verification + Passive Liveness + Face Match + IP Analysis (500 free/month)
Premium checks: Prepaid credits, no contracts, no minimums, credits never expire.
Details: https://didit.me/pricing


## Rate Limits

300 req/min per method, 600 session creations/min.
On 429: check Retry-After header.

认证

通过认证,获得企业信任

我们的平台符合信息安全、数据隐私和生物识别准确性的最高国际标准。

translation_v21.securityCompliance.certifications.items.gdpr.title

GDPR 合规

完全符合欧盟数据保护法规

ISO 27001

ISO 27001

信息安全管理

translation_v21.securityCompliance.certifications.items.ibeta.title

iBeta Level 1

PAD(活体检测 + 人脸匹配)

全球信赖

我们的客户怎么说

加入成千上万信任Didit满足其验证需求的公司

Logo

Didit's NFC + active biometrics technology blocks the most advanced fraud scenarios, offering a level of security equivalent to or superior to in-person verification.

Spanish Financial Sandbox

CNMV, SEPBLAC & Spanish Treasury — Conclusions Report

Logo

Didit 是一个特别有价值的合作伙伴,提供稳定且高度适应性的解决方案。

Vuk Adžić

Crnogorski Telekom 电子商务部门主管

Logo

Didit 为我们提供了强大的技术,实现简单且适应不同市场。

Fernando Pinto

TucanPay 首席执行官兼联合创始人

Logo

多亏了 Didit,我们能够减少手动流程并提高数据提取的准确性。

Diana Garcia

Shiply 信任与安全主管

Logo

Didit 的集成大幅缩短了验证时间并降低了成本,释放了资源用于其他项目。

Guillem Medina

GBTC Finance 首席运营官

Logo

Didit 消除了 KYC 成本,使我们能够以更高的验证标准和更少的欺诈更快地扩展。

Paul Martin

Bondex 市场营销与增长副总裁

Logo

Didit 的安全、用户友好的验证增强了客户信任并优化了我们的流程。

Cristofer Montenegro

Adelantos 首席执行官行政助理

Logo

Didit 确保了精确、安全的数字入职,不会减慢谈判或客户时间的速度。

Ernesto Betancourth

CrediDemo 风险经理

可重复使用的 KYC FAQ

关于可重复使用 KYC 的问题

可重复使用的 KYC 允许已完成一次的身份验证跨多个应用程序重复使用,避免重复上传文件,同时保持安全性和合规性。

在几分钟内开始验证用户

获取免费账户、即时沙盒以及对所有功能的完全访问权限。无合同。无销售电话。无需信用卡。