跳到主要内容
Didit 融资 750 万美元,打造身份与欺诈基础设施
Didit
B2B 可复用 KYC

您的合作伙伴共享已验证身份。
服务器到服务器。

一次性验证用户或企业身份。将结果分享给合作伙伴,他们即可立即完成同一用户的入驻。无需重复流程,无需再次自拍。支持 KYC 和 KYB。专为银行即服务 (BaaS)、多品牌集团、嵌入式金融和拥有子平台的市场而设计。

投资方
Y CombinatorRobinhood Ventures
Didit B2B 可复用 KYC, 通过短期共享令牌实现服务器到服务器的合作伙伴 KYC 共享。

专为合作伙伴生态系统打造

一次验证。
所有合作伙伴均可使用。

您的用户在您的应用中完成一次验证。您的合作伙伴, 您的 BaaS 赞助商、您的 姊妹品牌、您的下游市场, 需要相同的记录。向他们发送一个 一次性共享令牌。他们兑换令牌并获取完整的验证信息。 用户无需经历第二次流程。

工作原理

从您的应用到您的合作伙伴,仅需四步。

  1. 步骤 01

    选择一个已验证会话

    选择任何已完成的验证, 已批准、已拒绝或审核中, 并向 Didit 请求共享令牌。令牌默认在一小时后过期;您可以将其有效期从一分钟延长至一整天。

  2. 步骤 02

    将令牌发送给您的合作伙伴

    通过您自己的后端(例如 webhook、队列、REST 调用)将令牌交给您的合作伙伴。该令牌仅适用于您在生成时指定的合作伙伴。其他任何人都无法兑换。

  3. 步骤 03

    您的合作伙伴导入记录

    您的合作伙伴兑换令牌并选择如何入驻用户, 信任您的决定并立即批准,或者直接获取原始数据,由他们的合规团队做出决定。

  4. 步骤 04

    完整会话导入到他们的应用中

    Didit 将整个记录, 文档、自拍、人脸匹配、AML、注册数据、UBO, 克隆到您合作伙伴的工作区。其形式与全新验证相同,并具有可追溯到原始记录的清晰审计追踪。

专为 BaaS · 嵌入式金融 · 多品牌集团打造

一次验证。所有合作伙伴平台。

生成令牌。发送。导入。选择入驻速度。六个核心功能涵盖各种合作伙伴生态系统, KYC 和 KYB 均适用。
01 · 生成共享令牌

为您的合作伙伴生成一次性令牌。

选择一个已完成的验证,并向 Didit 请求一个针对特定合作伙伴的令牌。默认有效期为一小时;您可以将其有效期从一分钟延长至一整天。该令牌仅适用于您指定的合作伙伴, 其他任何人都无法兑换。
共享会话 API
02 · 导入会话

您的合作伙伴拉取完整记录。

您的合作伙伴兑换令牌后,Didit 会将整个验证信息克隆到他们的工作区, 全新的会话、相同的数据,并具有可追溯到原始记录的完整审计追踪。他们会用自己的内部用户 ID 进行标记,并选择其导入的工作流程。
导入共享会话 API
03 · 信任或重新审核

即时入驻,或重新进行合规检查。

信任您的决定,让您的合作伙伴在令牌导入后立即批准用户。或者将原始数据交给他们,由他们的合规团队做出决定。可按合作伙伴切换, 相同的调用,两种入驻速度。
可复用 KYC 指南
04 · KYC + KYB · 两种模式

共享个人或整个企业信息。

相同的调用适用于两种模式。共享已验证的个人信息,您的合作伙伴将获得文档、自拍、匹配结果以及所有 AML 命中记录。共享已验证的企业信息,他们将获得注册记录、所有最终受益所有人、所有高管的 KYC 信息、所有文档和所有筛选结果。
企业验证 (KYB)
05 · 适应合作伙伴生态系统

专为需要一次验证多方服务的企业而设计。

银行即服务 (BaaS) 赞助商。多品牌集团, 例如,新银行与经纪商、法币入口与交易所。通过合作银行运行的嵌入式金融。拥有区域子平台的市场。白标经销商。贷款机构网络。任何一个用户或企业只需一次入驻即可服务多个平台。
工作流编排器
06 · 合规性设计

默认审计级别。

Didit 仅为已完成的验证生成令牌, 不会有未完成的流程泄露给合作伙伴。同一个令牌不能被导入两次。双方签署 GDPR 数据共享协议;Didit 提供技术支持。
安全与合规
集成

两次调用。一次交接。

您在您的系统上生成令牌。您的合作伙伴在他们的系统上导入。双方采用相同的协议, 适用于 KYC 和 KYB。
POST /v3/session/{id}/share/服务 X · 生成
$ curl -X POST https://verification.didit.me/v3/session/$SID/share/ \
  -H "x-api-key: $DIDIT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "for_application_id": "partner-app-uuid",
    "ttl_in_seconds": 3600
  }'
201已创建{ "share_token": "eyJhbGciOi…" }
通过预先安排的后端通道将令牌交给服务 Y。文档 →
POST /v3/session/import-shared/服务 Y · 导入
$ curl -X POST https://verification.didit.me/v3/session/import-shared/ \
  -H "x-api-key: $DIDIT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "share_token": "eyJhbGciOi…",
    "workflow_id": "wf_partner_kyc",
    "vendor_data": "partner-user-42",
    "trust_review": true
  }'
201已创建{ "status": “已批准”, “session_kind”: “user” }
设置 trust_review: false 将会话置于“审核中”状态。文档 →
代理就绪集成

一键集成,实现合作伙伴KYC共享。

将以下代码块粘贴到Claude Code、Cursor、Codex、Devin、Aider或Replit Agent中。代理将连接Didit,搭建交接双方,并完成部署。
didit-integration-prompt.md
# Didit B2B Reusable KYC — partner-to-partner KYC sharing

You are integrating Didit's B2B Reusable Know Your Customer (KYC) into <my_stack>. The recipe is server-to-server: one Didit application (Service X) mints a short-lived JSON Web Token (JWT) share token for a finished session; a partner Didit application (Service Y) imports the token and Didit clones the full verified session into Service Y. Works for both KYC and Know Your Business (KYB) sessions.

Built for Banking-as-a-Service (BaaS) sponsor banks, multi-brand financial groups, embedded finance through partner banks, marketplaces with regional or vertical sub-platforms, on-ramp + exchange ecosystems, white-label resellers, and B2B KYB consortia where the same legal entity onboards once and serves many. Every URL, header, and enum value below is canonical — do not paraphrase or "improve" them.

## 1. Provision both applications
- Sign up: https://business.didit.me (no credit card required).
- Or provision programmatically: POST https://apx.didit.me/auth/v2/programmatic/register/
- Create TWO applications in your Didit organisation. One acts as Service X (mints share tokens), the other as Service Y (imports them). In production these will usually live in different organisations — one per partner.
- Each application has its own `x-api-key`. Service X uses its own key to mint; Service Y uses its own key to import.

## 2. Service X — mint a share token

Service X picks a finished session it owns and posts to the share endpoint:

  POST https://verification.didit.me/v3/session/{sessionId}/share/
  Headers:
    x-api-key: <Service X api key>
    Content-Type: application/json
  Body:
    {
      "for_application_id": "<partner-application-uuid>",
      "ttl_in_seconds": 3600
    }

Bounds on `ttl_in_seconds`: min 60, max 86400, default 3600.

Requirements:
  - The session must be in a FINISHED status: "Approved", "Declined", or "In Review".
  - The API key must hold the `write:sessions` privilege.
  - `for_application_id` must be a real Didit application uuid — usually the partner's app.

Response: 201 Created with the JWT in the `share_token` field plus `for_application_id` and `session_kind` ("user" or "business" — Didit detects this from the source session and embeds it in the token):

  {
    "share_token": "eyJhbGciOiJIUzI1NiJ9...",
    "for_application_id": "partner-app-uuid",
    "session_kind": "user"
  }

## 3. Transmit the token to Service Y

Service X transmits the `share_token` to Service Y over a pre-arranged backend channel — REST, message queue, signed webhook, anything you control. The token is scoped to Service Y's application and useless to any other application.

## 4. Service Y — import the shared session

Service Y posts the token to the import endpoint:

  POST https://verification.didit.me/v3/session/import-shared/
  Headers:
    x-api-key: <Service Y api key>
    Content-Type: application/json
  Body:
    {
      "share_token": "<jwt from step 2>",
      "workflow_id": "<Service Y's own workflow id>",
      "vendor_data": "<Service Y's internal user id>",
      "trust_review": true
    }

`trust_review`:
  - `true`  → the imported session preserves the original status ("Approved" / "Declined" / "In Review"). Service Y onboards the user instantly. Use when Service Y fully trusts Service X's decision (sister brand, regulated partner with a signed data-sharing agreement).
  - `false` → the imported session lands in "In Review" so Service Y's compliance team makes its own call. Safe default for new partner relationships.

Response: 201 Created with a brand-new session in Service Y's application:

  {
    "session_id": "<new uuid>",
    "session_number": <int>,
    "session_kind": "user" | "business",
    "status": "Approved" | "In Review" | "Declined",
    "shared_from_session": "<original session uuid in Service X>",
    "vendor_data": "<Service Y's internal user id>",
    "id_verifications": [...],
    "liveness_checks": [...],
    "face_matches": [...],
    "aml_screenings": [...],
    "database_validations": [...],
    "proof_of_address": [...],
    "phone_verifications": [...],
    "email_verifications": [...]
  }

For a `session_kind: "business"` token Didit clones the KYB shape instead. KYB session statuses are UPPER_SNAKE_CASE (not Title Case like KYC):

  {
    "session_id": "<new uuid>",
    "session_kind": "business",
    "status": "APPROVED",
    "shared_from_session": "<original business session uuid>",
    "vendor_data": "<Service Y's internal business id>",
    "registry_checks": [...],
    "key_people_checks": [...],
    "document_verifications": [...],
    "aml_screenings": [...],
    "questionnaires": [...]
  }

A new User or Business entity is auto-created in Service Y if one with the supplied `vendor_data` doesn't already exist.

## 5. Idempotency, expiration, errors

| Status | Reason |
|--------|--------|
| 401 | Share token invalid or past `exp` — request a new one. |
| 403 | Token not intended for your application, OR session already imported into your app. |
| 404 | Original session no longer exists. |
| 404 | `workflow_id` not found in your application. |

The duplicate-import check is enforced against the (share_token, partner application) pair.

## 6. Webhooks (optional, only when Service Y wants async updates)

Service Y can register a webhook destination once via:

  POST https://verification.didit.me/v3/webhook/destinations/
  Body: url, subscribed_events: ["status.updated"]

Every webhook delivery carries an `X-Signature-V2` header you MUST verify before trusting the payload. 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.

Algorithm:
  1. sortKeys(payload) recursively
  2. shortenFloats (truncate trailing zeros after the decimal point)
  3. JSON.stringify the result
  4. HMAC-SHA256 with the secret_shared_key
  5. Hex-encode, compare to the X-Signature-V2 header.

## 7. Hard rules — do not change
- Base URL for /v3/* endpoints is verification.didit.me (NOT apx.didit.me).
- Auth header is x-api-key (lowercase, hyphenated).
- Webhook signature header is X-Signature-V2 (NOT X-Signature).
- Status casing matches exactly: "Approved", "Declined", "In Review", "Not Finished" (Title Case With Spaces — KYC convention).
- session_kind is lowercase: "user" or "business".
- The share API is BUSINESS-to-BUSINESS sharing. Service X and Service Y are responsible for the data-sharing legal basis under General Data Protection Regulation (GDPR), UK GDPR, and any cross-border transfer rules. Didit ships the technical capability; you ship the data-sharing agreement.

## 8. Pricing reference (public)
- Service X already paid for the original verification (full KYC bundle is $0.30 or KYB session starts at $2.00; see didit.me/pricing).
- Service Y pays nothing on the import side — `POST /v3/session/import-shared/` is included with every plan.
- 500 free verifications every month on every account (applies to fresh captures, not imports).

## 9. Verify your integration
- Sandbox starts on signup at https://business.didit.me — no separate flag.
- Create two sandbox applications: one as Service X (issuer), the other as Service Y (importer). Use Service X's API key to mint a token for a finished sandbox session, hand the token off, use Service Y's API key to import.
- Switch to live: flip each application's environment toggle in console.

When in doubt:
- https://docs.didit.me/sessions-api/share-session/overview
- https://docs.didit.me/sessions-api/share-session/share
- https://docs.didit.me/sessions-api/share-session/import
- https://docs.didit.me/core-technology/reusable-kyc/share-kyc-via-api
合规性设计

一键开启新国家/地区业务。 我们为您解决难题。

我们负责设立当地子公司、获取许可证、进行渗透测试、获得认证,并与所有新法规保持一致。要在新国家/地区发布验证服务,只需轻点开关。已覆盖220多个国家/地区,每个季度进行审计和渗透测试, 是唯一一个被欧盟成员国政府正式认定比线下验证更安全的身份提供商。
阅读安全与合规性档案
欧盟金融沙盒
Tesoro · SEPBLAC · BdE
Jugendschutz geprüft
FSM · JMStV §4(2) · 2026
ISO/IEC 27001
信息安全 · 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
原生符合欧盟标准

数据证明

数据证明
  • 60s–24h
    令牌有效期可设置为一分钟到一整天。
  • KYC + KYB
    共享个人或整个企业信息, 同一调用,两种类型。
  • $0.00
    您的合作伙伴导入您共享的验证信息无需支付任何费用。
  • 0
    每个账户每月均享免费验证。
三个层级,一份价目表

免费开始。按使用量付费。可扩展至企业级。

每月 500 次免费验证,永久有效。生产环境按量付费。企业版提供定制合约、数据驻留和 SLA (Service Level Agreements)。
免费

免费

每月 $0。无需信用卡。

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

按用量计费

按实际用量付费。25+模块。公开的模块定价,无每月最低费用。

  • 完整KYC $0.33(身份+生物识别+IP/设备)
  • 10,000+ AML数据集, 制裁、PEP、负面媒体
  • 1,000+ 政府数据源用于数据库验证
  • 交易监控 $0.02/笔交易
  • 实时KYB $2.00/家企业
  • 钱包筛选 $0.15/次检查
  • 白标验证流程, 您的品牌,我们的基础设施
企业版

企业版

定制MSA和SLA。适用于大批量和受监管项目。

  • 年度合同
  • 定制MSA、DPA和SLA
  • 专属Slack和WhatsApp频道
  • 按需人工审核员
  • 经销商和白标条款
  • 独家功能和合作伙伴集成
  • 指定CSM、安全审查、合规支持

免费开始 → 仅在检查运行时付费 → 解锁企业版以获取定制合约、SLA 或数据驻留。

FAQ

常见问题

Didit 是什么?

Didit 身份和欺诈基础设施, 这是我们自己构建产品时希望存在的平台:开放、灵活且对开发者友好,因此它能真正成为您技术栈的一部分,而不是一个您需要围绕其集成的黑盒。

一个 API 涵盖了人员验证(KYC了解您的客户)、企业验证(KYB了解您的企业)、加密钱包筛选(KYT了解您的交易)以及实时交易监控, 构建于以下技术栈之上:

  • 快速, 每个会话的 p99 响应时间低于 2
  • 可靠, 已在 220 多个国家/地区 1,500 多家公司投入生产
  • 安全, SOC 2 Type 1、ISO 27001、GDPR 原生,并经西班牙金融监管机构正式认证,比亲自验证更安全

底层支持:14,000 多种文档类型,支持 48 种以上语言1,000 多个数据源,每个会话有 200 多个欺诈信号。Didit 基础设施从每个会话中动态学习,并日益完善。

什么是 B2B 可复用 KYC?

B2B 可复用 KYC 允许一个企业将已验证的用户或公司移交给另一个企业, 这样合作伙伴无需再次运行验证即可入驻同一用户。

它分两步进行:

  • 生成共享令牌。 在您的应用中选择一个已完成的验证,向 Didit 请求一个与指定合作伙伴绑定的一次性令牌。默认有效期为一小时;您可以将其延长至一分钟到一整天。其他任何人都无法兑换。
  • 您的合作伙伴导入会话。 他们兑换令牌,Didit 将完整记录克隆到他们的工作区, 文档、自拍、人脸匹配、AML 命中、注册数据、最终受益所有人 (UBO)。与全新验证具有相同的结构,并具有清晰的审计追踪,可追溯到原始验证。

您的合作伙伴选择入驻速度。信任您的决定并立即批准用户,或者提取原始数据并让其合规团队做出决定。

适用于了解您的客户 (KYC) 了解您的企业 (KYB), 相同的调用,两种形式。

完整参考:docs.didit.me/sessions-api/share-session

这适用于哪些场景?

适用于任何商业模式,其中一个平台一次性入驻用户,而多个合作伙伴平台需要相同的验证:

  • 银行即服务 (BaaS), 您的赞助银行或 BIN 赞助商需要您已收集的相同了解您的客户 (KYC) 数据。从您的应用程序生成共享令牌,赞助商导入它。
  • 多品牌金融集团, 单个用户入驻品牌 A,同一集团需要在品牌 B 中使用该用户(新银行 + 经纪商、金融科技 + 贷款部门、电子货币 + 加密货币入口)。
  • 嵌入式金融 / 软件即服务 (SaaS) 市场, 垂直软件即服务通过合作银行提供支付或贷款;与路由用户的银行共享验证。
  • 带有子平台的市场, 父市场一次性验证卖家,下游区域/垂直市场继承验证。
  • 入口和交易所, 法币入口与列出资产的交易所共享已验证用户;无需二次自拍。
  • B2B 了解您的企业 (KYB) 生态系统, 一次性验证企业(注册 + UBO + AML + 文档),并将该记录共享给所有入驻同一法人实体的合作伙伴。

如果您可以与您的合作伙伴签订数据共享协议,此 API 将完成技术部分。

我的最终用户的验证速度有多快?

整个流程通常在 30 秒内完成, 拿起身份证,拍摄证件,拍摄自拍,完成。这是市场上最快的。传统的 KYC 提供商完成相同流程通常需要超过 90

在后端,Didit p99 下两秒内返回结果,从用户完成自拍到您的 webhook 触发。移动端捕获针对慢速手机和慢速网络进行了优化:渐进式图像压缩、延迟加载软件开发工具包,以及如果用户从网页开始,通过二维码从桌面到手机的一键式切换。

导入响应是什么样的?

POST /v3/session/import-shared/ 返回 201 Created,并在您的应用程序中创建一个全新的会话, 新的 session_id session_number,完整负载从源克隆。

关键字段:

  • status, Approved / Declined / In Review(当 trust_review: true 时保留,当 trust_review: false 时强制为 In Review)。
  • session_kind, user (KYC) business (KYB)。
  • shared_from_session, 指向源应用程序中的原始会话。这是此会话是导入而非新捕获的规范信号。
  • vendor_data, 您在导入调用中传递的内部用户/业务 ID。
  • KYC 关系克隆id_verificationsliveness_checksface_matchesaml_screeningsdatabase_validationsproof_of_addresslocation_checksphone_verificationsemail_verifications
  • KYB 关系克隆registry_checkskey_people_checks(及其嵌套的 KYC)、document_verificationsaml_screeningsquestionnaires

与新会话的结构相同, 您现有的 webhook 处理程序以相同的方式读取它。

如果用户失败、放弃或过期会怎样?

每个会话都会落入七种明确状态之一,因此您的代码始终知道该怎么做:

  • 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:2022iBeta Level 1 PAD,以及西班牙财政部/SEPBLAC/CNMV 的公开证明,表明 Didit 的远程身份验证比亲自验证更安全。完整报告请访问 /security-compliance

Didit 符合我的行业要求吗?

Didit 默认符合身份基础设施相关监管机构的要求:

  • GDPR + UK GDPR, 控制器/处理者分离,发布完整的《数据处理协议》,指定主要监管机构(西班牙数据保护局 AEPD)。
  • AMLD6 + 欧盟 AML 单一规则手册, 实时筛选 1,300 多个制裁、政治公众人物和负面媒体名单。
  • eIDAS 2.0, 符合欧盟数字身份钱包标准;支持可复用身份。
  • MiCA (Markets in Crypto-Assets), 为加密货币入口、交易所和托管机构做好准备。
  • DORA, 数字运营韧性法案,欧盟金融服务运营韧性。
  • BIPA, CUBI, Washington HB 1493, CCPA / CPRA, 美国生物识别隐私(伊利诺伊州、德克萨斯州、华盛顿州)和加州消费者隐私。
  • UK Online Safety Act, 年龄门控和儿童安全义务。
  • FATF Travel Rule, 加密货币转账的发起方和受益方数据,与 IVMS-101 互操作。

详细备忘录、所有证书、所有监管机构函件:/security-compliance

我能多快集成并开始验证用户?
  • 60 即可在 business.didit.me 获得沙盒账户, 无需信用卡。
  • 5 分钟即可通过 Claude Code、Cursor 或任何编码代理,经由我们的模型上下文协议 (MCP) 服务器完成工作验证。
  • 一个周末即可完成生产就绪的集成,包括签名 webhook 验证、重试以及用户被拒绝时的补救流程。

三种集成路径, 选择最适合您技术栈的方式:

  • 使用我们的 Web、iOS、Android、React Native Flutter SDK 原生嵌入
  • 将用户重定向到托管验证页面, SDK。
  • 通过电子邮件、短信、WhatsApp 或任何渠道发送链接, 零前端工作。

所有三种方式都使用相同的仪表板、相同的计费、相同的按成功付费价格。分步指南请访问 docs.didit.me/integration/integration-prompt

身份与欺诈基础设施。

一个 API 即可实现 KYC、KYB、交易监控和钱包筛选。5 分钟即可集成。

让 AI 总结此页面