무료
월 $0. 신용카드 정보가 필요 없습니다.
- 무료 KYC 번들 (신분증 확인 + 패시브 라이브니스 + 얼굴 매칭 + 기기 및 IP 분석), 매월 500건 제공
- 차단된 사용자
- 중복 감지
- 모든 세션에서 200개 이상의 사기 신호 감지
- Didit 네트워크 전반에 걸쳐 재사용 가능한 KYC
- 사례 관리 플랫폼
- 워크플로 빌더
- 공개 문서, 샌드박스, SDK, MCP(Model Context Protocol) 서버
- 커뮤니티 지원


전 세계 2,000개 이상의 기관에서 신뢰합니다.

프로덕트 오너의 고민
캔버스에 모듈을 드래그하여 연결하고, 분기를 추가한 다음 버전을 발행하여 workflow_id를 앱에 전달하세요. 규칙이 변경되면 프로덕트 매니저가 초안을 편집하고 발행하면 됩니다. 엔지니어링 티켓이나 재배포는 필요 없습니다. 통합은 언제나 `POST /v3/session/` 호출 한 번으로 간단하게 유지됩니다.
ID, Liveness, Face Match, 제재 목록, 주소, 연령, 전화번호, 이메일, 맞춤 질문 등 필요한 검사를 선택하세요. 대시보드에서 플로우로 드래그하거나, 동일한 플로우를 API로 전송할 수 있습니다. 조건에 따라 분기를 만들고 A/B 테스트를 실행하세요. 코드는 필요 없습니다.
Didit의 Web, iOS, Android, React Native, Flutter SDK로 네이티브하게 임베드하세요. 호스팅된 페이지로 리디렉션하거나, 이메일, SMS, WhatsApp 등 어디든 사용자에게 링크를 보내기만 하면 됩니다. 스택에 맞는 방식을 선택하세요.
Didit은 카메라, 조명 안내, 모바일 핸드오프, 접근성을 호스팅합니다. 사용자가 플로우를 진행하는 동안 200개 이상의 사기 신호를 실시간으로 분석하고 모든 필드를 신뢰할 수 있는 데이터 소스와 대조하여 확인합니다. 2초 이내에 결과를 받아보세요.
실시간으로 서명된 웹훅은 사용자가 승인, 거부 또는 검토 대상으로 분류되는 즉시 데이터베이스를 동기화합니다. 필요에 따라 API를 폴링하거나, 콘솔을 열어 모든 세션, 모든 신호를 검사하고 원하는 방식으로 케이스를 관리할 수 있습니다.
Didit · Canvas
Didit · 분기
Didit · 템플릿
Didit · A/B
Didit · 버전 관리
현재
초안
Didit · /v3/ + MCP
$ curl -X POST https://verification.didit.me/v3/session/ \
-H "x-api-key: $DIDIT_API_KEY" \
-d '{
"workflow_id": "wf_signup_v12",
"vendor_data": "user-42",
"callback": "https://app/cb"
}'Didit이 서버 측에서 모든 브랜치를 통해 사용자를 안내합니다.$ curl -X POST https://verification.didit.me/v3/workflows/ \
-H "x-api-key: $DIDIT_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"workflow_label": "Signup KYC",
"features": [
{ "feature": "OCR" },
{ "feature": "LIVENESS" },
{ "feature": "FACE_MATCH" },
{ "feature": "AML" }
]
}'워크플로우 uuid를 반환합니다 · workflow_id로 바로 사용할 수 있습니다.You are integrating Didit's no-code Workflow Builder into a product. The product manager, the compliance officer, or the founder can change identity rules in the Business Console; your app only ever hands Didit a workflow_id, gets a verdict back, and routes the user.
Three pillars:
1. Compose the workflow in the visual builder — drag ID, Liveness, Face Match, AML, NFC, KYB modules onto the canvas, connect them with edges, add conditional branches.
2. Publish a version — the published version is immutable; sessions reference the exact version they were created with.
3. Open POST /v3/session/ with the published workflow_id. Didit handles every module and every branch server-side.
Cost:
- Pay per completed module per session (e.g. ID $0.15 + Liveness $0.10 + Face Match $0.05 + AML $0.20 = $0.50, or bundle = $0.33)
- Workflow Builder itself is free
- MCP server (for AI coding agents to manage workflows programmatically) is free, included
- First 500 verifications free every month, forever
PRE-REQUISITES
- Production API key from https://business.didit.me (sandbox key in 60s, no card).
- Webhook endpoint with HMAC SHA-256 verification using the X-Signature-V2 header and your webhook secret.
- Access to the Business Console's Workflow Builder (every account has it).
- The 11 seeded templates are a good starting point:
"ID + Face Match"
"ID + Liveness + Face Match" (the $0.33 KYC bundle)
"ID + IP risk-based" (extra Liveness on VPN / Tor)
"Phone risk-based verification"
"High-risk country review"
"Two ID documents"
"Driver verification"
"EU Company Verification" (KYB)
... plus four more
- Plus "Start from Scratch" for fully bespoke flows.
STEP 1 — Compose the workflow
Console → Workflows → New → pick a template OR Start from Scratch:
- Drag modules from the sidebar onto the canvas
- Connect them with edges (the user moves left-to-right through them)
- Add branching conditions (right-click a node → Add condition)
- Set per-workflow options: Include custom style (white label), retention override, callback URL
Click Save Draft. The draft is fully editable; only published versions are immutable.
STEP 2 — Publish a version
Click Publish on the draft. The version receives a number (v1, v2, v3…) and becomes immutable.
Versioning rules:
- Sessions reference the exact published version they were created with
- You can iterate on a new draft while sessions on the old version continue to use it
- Past versions are kept; you can inspect any past session's configuration
- To change a published workflow, create a new draft from it, edit, publish
STEP 3 — Open a session with the workflow_id
POST https://verification.didit.me/v3/session/
Headers:
x-api-key: <your api key>
Content-Type: application/json
Body:
{
"workflow_id": "<your published workflow id>",
"vendor_data": "<your user id, max 256 chars>",
"callback": "https://<your-app>/identity/callback"
}
Response: 201 Created with the hosted session URL. Didit walks the user through every module and every branch defined in the workflow.
STEP 4 — Read the signed webhook on completion
Didit POSTs to your callback when the session reaches a terminal status. Session statuses are Title Case With Spaces:
Body (excerpted):
{
"session_id": "<uuid>",
"workflow_id": "<the workflow id>",
"workflow_version": "<v3>",
"vendor_data": "<your user id>",
"status": "Approved",
"id_verification": { "status": "Approved" },
"liveness": { "status": "Approved" },
"face": { "status": "Approved", "similarity_score": 0.94 },
"aml": { "status": "Approved", "hits": [] }
}
Status enum (exact case): Approved | Declined | In Review | Resubmitted | Expired | Not Finished | Kyc Expired | Abandoned.
Verify the X-Signature-V2 header BEFORE reading the body — HMAC SHA-256 of the raw bytes with your webhook secret.
Each module that ran inside the workflow returns its own sub-status; the top-level status is the rolled-up verdict.
STEP 5 — Iterate without redeploying
When the rules need to change — a new country flagged as high-risk, a tighter age threshold, a new module added to the bundle — the workflow owner edits the draft in the Console and publishes. New sessions automatically use the new version.
Your app doesn't change. You don't redeploy. The workflow_id is the same; the underlying behaviour is updated.
STEP 6 — Run A/B tests
Built-in A/B testing splits traffic across variant workflows. Configure variants in the Console (e.g. variant A uses Passive Liveness, variant B uses Active Liveness), set the split percentage, and read the variant id back on every session webhook.
Measure conversion + verdict mix per variant in the Business Console's analytics. Promote the winner; the loser becomes a previous version retained for audit.
STEP 7 — Drive the Workflow Builder from AI coding agents
The Didit MCP (Model Context Protocol) server (free, included) exposes the Workflow management primitives as MCP tools. Any MCP-compatible host — Claude Code, Cursor, Codex, Replit Agent, Devin, Aider — can list workflows, create new drafts, edit nodes, and publish versions on your behalf.
Useful for ops teams that want to script tenant-specific workflow provisioning, A/B-variant generation, or per-customer-brand template materialisation.
WEBHOOK EVENT NAMES
- Sessions: status changes flow through the standard session webhook.
- Verify X-Signature-V2 on every payload.
CONSTRAINTS
- Session statuses use Title Case With Spaces (Approved, In Review). Don't transform them.
- Published workflow versions are immutable. To change behaviour, publish a new version.
- Conditional branches are unlimited in depth; keep flows readable for the next operator.
- The cost model is pay-per-completed-module — adding a module that runs only conditionally only costs you on the branches that hit it.
Read the docs:
- https://docs.didit.me/console/workflows
- https://docs.didit.me/sessions-api/create-session
- https://docs.didit.me/sessions-api/retrieve-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, 거래 알기), 실시간 거래 모니터링을 처리하며, 다음을 위해 구축된 스택에서 작동합니다.
기본적으로 48개 이상의 언어로 14,000개 이상의 문서 유형, 1,000개 이상의 데이터 소스, 모든 세션에서 200개 이상의 사기 신호를 처리합니다. Didit 인프라는 모든 세션에서 동적으로 학습하며 매일 발전합니다.
KYC / AML / KYB 흐름이 무엇을, 어떤 순서로, 어떤 조건에서 확인하는지를 코드 대신 시각적인 드래그 앤 드롭 캔버스에서 설계하는 방법입니다.
실제 예시:
workflow_id를 엔지니어링 팀에 전달합니다.workflow_id를 POST /v3/session/에 전달합니다. 끝입니다.규칙을 변경해야 할 때, 제품 관리자는 초안을 편집하고 게시합니다. 앱은 재배포되지 않습니다.
그럴 수도 있습니다. 하지만 대부분의 팀은 세 가지 교훈을 얻게 됩니다.
워크플로 빌더는 이 세 가지를 하나의 드래그 앤 드롭 캔버스에 통합합니다. 규칙은 제품 구성이 되고, 코드는 하나의 POST /v3/session/ 호출이 됩니다.
전체 흐름은 일반적으로 처음부터 끝까지 30초 미만이 소요됩니다., 신분증을 들고, 문서를 촬영하고, 셀카를 찍으면 끝입니다. 이는 시장에서 가장 빠른 속도입니다. 기존 KYC 제공업체는 동일한 흐름에 90초 이상이 걸리는 경우가 많습니다.
백엔드에서는 사용자가 셀카를 마치는 순간부터 웹훅이 실행되는 순간까지 p99에서 2초 미만으로 결과를 반환합니다. 모바일 캡처는 느린 휴대폰과 느린 네트워크에 최적화되어 있습니다: 점진적 이미지 압축, 지연 소프트웨어 개발 키트 로드, 사용자가 웹에서 시작하는 경우 QR 코드를 통한 데스크톱에서 휴대폰으로의 원탭 핸드오프를 제공합니다.
모든 Didit 기본 요소는 노드로 제공됩니다.
$0.15), NFC 읽기 ($0.15), 주소 증명 ($0.20), 데이터베이스 유효성 검사 (변동), 사용자 지정 설문지 ($0.10)$0.10), Active Liveness ($0.15), Face Match 1:1 ($0.05), Face Search 1:N (무료), 연령 추정 ($0.10), 생체 인식 인증 ($0.10)$0.20, 1,300개 이상 목록), 지속적인 AML ($0.07/사용자/년), 장치 및 IP 분석 ($0.03)$0.03), 전화 확인 (시작 가격 $0.03)또한 분기 노드 (if/else, switch) 및 터미널 노드 (승인, 거부, 검토)도 있습니다.
모든 세션은 7가지 명확한 상태 중 하나로 분류되므로, 코드는 항상 무엇을 해야 할지 알 수 있습니다.
Approved, 모든 확인 통과. 사용자를 다음 단계로 진행합니다.Declined, 하나 이상의 확인 실패. 사용자가 특정 실패 단계를 재제출할 수 있도록 허용할 수 있습니다 (예: 셀카 다시 찍기) 전체 흐름을 다시 실행할 필요 없이.In Review, 규정 준수 검토를 위해 플래그 지정됨. 콘솔에서 케이스를 열고 모든 신호를 확인한 후 승인 또는 거부를 결정합니다.In Progress, 사용자가 흐름 중간에 있습니다.Not Started, 링크가 전송되었지만 사용자가 아직 열지 않았습니다. 너무 오래 방치되면 알림을 보냅니다.Abandoned, 사용자가 링크를 열었지만 제시간에 완료하지 못했습니다. 다시 참여시키거나 만료시킵니다.Expired, 세션 링크가 만료되었습니다. 새 세션을 생성합니다.모든 상태 변경 시 서명된 웹훅이 실행되므로 데이터베이스는 항상 동기화 상태를 유지합니다. 중단되거나 거부된 세션은 무료입니다.
프로덕션 데이터는 기본적으로 Amazon Web Services에서 유럽 연합 내에서 처리 및 저장됩니다. 엔터프라이즈 계약은 규제 기관이 요구하는 관할권에 대해 대체 지역을 요청할 수 있습니다.
모든 곳에서 암호화됩니다. 모든 데이터베이스, 객체 저장소 및 백업에서 AES-256 암호화가 적용됩니다. 모든 API 호출, 웹훅 및 비즈니스 콘솔 세션에서 전송 중 전송 계층 보안 1.3이 적용됩니다. 생체 인식 데이터는 별도의 고객 마스터 키로 암호화됩니다.
데이터 보존은 고객이 제어합니다. 기본 보존 기간은 무기한 (무제한)이며, 더 짧은 기간 (애플리케이션당 30일에서 10년 사이)으로 구성할 수 있으며, 대시보드 또는 API를 통해 언제든지 개별 세션을 삭제할 수 있습니다.
인증: SOC 2 Type 1 (Type 2 감사 진행 중), ISO/IEC 27001:2022, iBeta Level 1 PAD, 그리고 스페인 Tesoro / SEPBLAC / CNMV로부터 Didit의 원격 신원 확인이 대면 확인보다 안전하다는 공개 인증을 받았습니다. 전체 보고서는 /security-compliance에서 확인하세요.
Didit은 신원 확인 인프라에 중요한 규제 기관의 규정을 기본적으로 준수합니다.
자세한 메모, 모든 인증서, 모든 규제 기관 서한은 /security-compliance에서 확인하세요.
세 가지 통합 경로 중 스택에 맞는 것을 선택하세요.
세 가지 모두 동일한 대시보드, 동일한 청구, 동일한 성공당 지불 가격이 적용됩니다. 단계별 가이드는 docs.didit.me/integration/integration-prompt에서 확인하세요.
워크플로당 두 가지 상태가 있습니다.
게시된 워크플로를 변경하려면, 해당 워크플로에서 새 초안을 생성하고 편집한 다음 게시합니다. 새 게시된 버전은 v3 (또는 그 이후)가 되고, v2는 기록으로 영구히 유지됩니다. 과거 세션은 완전히 재현 가능합니다. 세션 페이로드에는 실행된 정확한 workflow_version이 포함됩니다.
이는 규제 기관이 감사 시 요구하는 사항과 일치합니다: "이 사용자가 이 날짜에 실행한 워크플로의 정확한 구성을 보여주세요." 모든 Didit 계정은 설정 없이 무료로 이 기능을 사용할 수 있습니다.
모든 것은 동일한 /v3/ 계약에 따라 제공됩니다.
workflow_id를 받아 사용자를 동일한 서버 측 오케스트레이션을 통해 안내합니다. 무료입니다.workflow_id, 동일한 오케스트레이션.결론적으로, 하나의 workflow_id가 콘솔 → 앱 → SDK 또는 호스팅 UI → 서버 측 오케스트레이션 → 서명된 웹훅으로 흐릅니다. 단일 POST /v3/session/ 외에는 추가적인 글루 코드가 필요 없습니다.
세 가지 연결, 한나절이면 충분합니다:
business.didit.me에 접속하여 60초 안에 샌드박스 키를 발급받으세요. 신용카드 정보는 필요 없습니다.workflow_id로 POST /v3/session/을 호출하고, 서명된 웹훅(X-Signature-V2, HMAC SHA-256)을 의사결정 로직에 연결합니다.이것이 전체 통합 과정입니다. 규칙이 변경되면 워크플로 소유자가 콘솔에서 초안을 편집하고 게시하면 되므로, 앱을 변경할 필요가 없습니다.
스크립트 기반 워크플로 관리를 위해 Didit MCP 서버는 무료로 제공되며, 모든 MCP 호환 에이전트(Claude Code, Cursor 등)가 Workflow Builder를 프로그래밍 방식으로 구동할 수 있도록 지원합니다.