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


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

중복 탐지
사용자 기반 전체에서 반복적인 사기꾼을 잡아냅니다. KYC 번들의 일부로 무료 제공됩니다. 생체 템플릿의 벡터 인덱스로, 수백만 건에 대해 2초 이내에 매칭합니다.
신분증, 라이브니스, 얼굴 매칭, 제재 목록, 주소, 연령, 전화번호, 이메일, 맞춤 질문 등 필요한 검사를 선택하세요. 대시보드에서 드래그 앤 드롭으로 플로우를 만들거나, API를 통해 동일한 플로우를 게시할 수 있습니다. 조건에 따라 분기하고 A/B 테스트를 실행하세요. 코딩은 필요 없습니다.
Web, iOS, Android, React Native, Flutter SDK를 사용하여 네이티브로 임베드하거나, 호스팅된 페이지로 리디렉션하세요. 또는 이메일, SMS, WhatsApp 등 어디든 사용자에게 링크를 보내기만 하면 됩니다. 스택에 맞는 방식을 선택하세요.
Didit은 카메라, 조명 안내, 모바일 핸드오프, 접근성을 호스팅합니다. 사용자가 플로우를 진행하는 동안 200개 이상의 사기 신호를 실시간으로 분석하고 모든 필드를 신뢰할 수 있는 데이터 소스와 대조하여 확인합니다. 2초 이내에 결과를 받아보세요.
실시간 서명된 웹훅을 통해 사용자가 승인, 거부 또는 검토 대기 상태가 되는 즉시 데이터베이스를 동기화합니다. 필요할 때 API를 폴링하거나, 콘솔을 열어 모든 세션과 신호를 검사하고 케이스를 직접 관리할 수 있습니다.
모든 Liveness 확인 내에서 자동 실행
FACE_IN_BLOCKLIST · 자동 거부
참조 벡터 · 1,000,000개 중 1개
similarity_threshold · 기본값 70
무제한 · 약정 없음
EU 지역 · 카테고리 3 데이터
$ curl -X POST https://verification.didit.me/v3/session/ \
-H "x-api-key: $DIDIT_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"workflow_id": "wf_liveness_dedupe",
"vendor_data": "user-42"
}'{ "session_url": "verify.didit.me/..." }$ curl -X POST https://verification.didit.me/v3/face-search/ \
-H "x-api-key: $DIDIT_API_KEY" \
-F "image=@reference.jpg" \
-F "similarity_threshold=80"{ "total_matches": 3, "status": "승인됨" }# Didit Face Search 1:N — integrate in 5 minutes
You are integrating Didit's Face Search 1:N (one-to-many biometric search)
module into my_stack. Follow these steps exactly. Every URL, header, and
enum value below is canonical — do not paraphrase or "improve" them.
Face Search 1:N searches a reference face against your entire database of
previously verified users to detect duplicate accounts, blocklisted faces,
and fraud rings. Free forever on every plan — no per-call fee, no minimum.
## 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/
(returns an API key bound to the workspace + application).
## 2. Two integration paths — pick one
### Path A — Workflow Builder (automatic, inside every liveness check)
Best when you want Face Search to run automatically every time a user
verifies. Face Search 1:N is automatically performed during liveness
checks in verification sessions to detect duplicate users and check
against blocklisted faces. No extra wiring needed.
1. Create a workflow that contains the LIVENESS feature:
POST https://verification.didit.me/v3/workflows/
Authorization header: x-api-key: your-api-key
Body: workflow_label, features array with the single entry
the JSON object containing feature equal to "LIVENESS"
(UPPERCASE — strict enum). Face Search runs automatically.
2. Create a verification session for an end user:
POST https://verification.didit.me/v3/session/
Body: workflow_id (from step 1), vendor_data (your own user id).
Response: session_url — redirect the user to it.
3. Listen for the session webhook (see "Webhooks" below). The face_search
block is included in the session report under decision.face_search.
### Path B — Standalone server-to-server API
Best when you want to search a face on demand — fraud investigation,
manual review tooling, watchlist scan, identity re-auth.
POST https://verification.didit.me/v3/face-search/
Content-Type: multipart/form-data
Body fields:
- image (required, file — single reference face)
- vendor_data (optional string, your search id)
- similarity_threshold (optional int 0-100, default 70)
- allow_multiple_faces (optional bool, default false)
Response: JSON report with matches array, similarity percentages,
blocklist flags, and the standard warnings array.
## 3. Webhooks (Path A only — Path B returns synchronously)
- Register a webhook destination once via
POST https://verification.didit.me/v3/webhook/destinations/
Body: url, subscribed_events: ["session.verified", "session.review_started",
"session.declined"]
- Response includes secret_shared_key — store it.
- 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.
## 4. Reading the report (both paths return the same shape)
The face_search object includes:
- status: "Approved" | "Declined" | "In Review"
- total_matches: integer (0 when no match crossed the threshold)
- matches: array of match objects, each with:
- session_id UUID of the matching session
- session_number integer
- similarity_percentage number 0-100
- vendor_data your reference data from the original verification
- verification_date ISO 8601 timestamp
- user_details name, document_type, document_number (masked)
- match_image_url signed URL, expires in 60 minutes
- status "Approved" | "Declined" | "In Review"
- is_blocklisted boolean
- user_image:
- entities array (bbox, confidence, age, gender per detected face)
- best_angle (0 | 90 | 180 | 270) if rotate_image enabled
- warnings: Array of risk, log_type, short_description, long_description
Similarity bands documented:
90+ Strong match — very likely the same person
70 – 89 Possible match — may require manual review
Below 70 Likely different individuals
Auto-decline risks (always enforced by Didit, not configurable):
- NO_FACE_DETECTED no face in the reference image
- FACE_IN_BLOCKLIST the reference face matches your face blocklist
Configurable warning:
- MULTIPLE_FACES_DETECTED tune allow_multiple_faces per application
## 5. Hard rules — do not change
- Base URL for /v3/* endpoints is verification.didit.me (NOT apx.didit.me).
- Feature enum is UPPERCASE: FACE_SEARCH, LIVENESS, ID_VERIFICATION, FACE_MATCH.
- Auth header is x-api-key (lowercase, hyphenated).
- Webhook signature header is X-Signature-V2 (NOT X-Signature).
- Always verify webhook signatures before trusting payload data.
- Status casing matches exactly: "Approved", "Declined", "In Review"
(title-cased, space-separated).
- match_image_url is signed and expires after 60 minutes — do not cache it,
re-fetch from the session if you need it again.
## 6. Pricing reference (public)
- Face Search 1:N is FREE FOREVER on every Didit plan.
- No per-call fee for the standalone POST /v3/face-search/ endpoint.
- No surcharge when bundled inside a LIVENESS workflow.
- 500 free Didit verifications every month on top of that.
- Templates only — your biometric index stores hashed embeddings, never raw
photos. Encrypted at rest in EU-region AWS.
## 7. Verify your integration
- Sandbox starts on signup at https://business.didit.me — no separate flag.
- Test images: deterministic synthetic faces returned in sandbox (Approved
by default; trigger Declined by sending a known-blocklisted test face).
- Switch to live: flip the application's environment toggle in console.
When in doubt: https://docs.didit.me/core-technology/face-search/overview
월 $0. 신용카드 정보가 필요 없습니다.
사용한 만큼만 지불하세요. 25개 이상의 모듈. 모듈별 공개 가격, 월 최소 요금 없음.
맞춤형 MSA 및 SLA. 대규모 볼륨 및 규제 프로그램에 적합합니다.
무료로 시작 → 확인 실행 시에만 지불 → 맞춤형 계약, SLA 또는 데이터 상주를 위해 엔터프라이즈 잠금 해제.
Didit은 신원 및 사기 방지 인프라입니다. 우리가 직접 제품을 만들 때 있었으면 했던 플랫폼이죠. 개방적이고 유연하며 개발자 친화적이어서, 통합해야 하는 블랙박스가 아니라 스택의 실제 부분으로 작동합니다.
하나의 API로 사람 확인(KYC, 고객 알기), 기업 확인(KYB, 기업 알기), 암호화폐 지갑 심사(KYT, 거래 알기), 실시간 거래 모니터링을 처리하며, 다음과 같은 스택을 기반으로 구축되었습니다:
기반 기술: 48개 이상의 언어로 14,000개 이상의 문서 유형, 1,000개 이상의 데이터 소스, 모든 세션에서 200개 이상의 사기 신호. Didit 인프라는 모든 세션에서 동적으로 학습하며 매일 개선됩니다.
image 멀티파트 필드와 선택적 vendor_data, similarity_threshold(0-100, 기본값 70), allow_multiple_faces(기본값 false)를 허용합니다. Liveness 워크플로 내에서는 별도의 입력이 필요하지 않습니다. 사용자가 캡처한 셀카는 자동으로 본인 인증된 사용자 인덱스와 비교되어, 중복 및 차단 목록 일치 항목이 Liveness 결과와 동일한 세션에 표시됩니다.face_search 객체는 status(Approved, Declined, In Review), total_matches, 그리고 matches 배열을 반환합니다. 각 일치 항목은 session_id, session_number, similarity_percentage(0-100), vendor_data, verification_date, user_details(이름, document_type, document_number, 마스킹됨), 60분 후에 만료되는 서명된 match_image_url, 일치하는 세션의 status, 그리고 is_blocklisted를 포함합니다. user_image 블록은 감지된 얼굴 엔티티(bbox, confidence, age, gender)와 적용된 회전을 보고합니다. warnings 배열은 발생한 모든 위험을 표시합니다.전체 과정은 일반적으로 처음부터 끝까지 30초 이내에 완료됩니다., 신분증을 들고, 서류를 촬영하고, 셀카를 찍으면 끝입니다. 이는 시장에서 가장 빠른 속도입니다. 기존 KYC 제공업체는 동일한 과정에 90초 이상이 소요되는 경우가 많습니다.
백엔드에서 Didit은 사용자가 셀카를 완료한 시점부터 웹훅이 실행되는 시점까지 측정했을 때, p99 기준으로 2초 이내에 결과를 반환합니다. 모바일 캡처는 느린 휴대폰과 느린 네트워크에 최적화되어 있습니다. 점진적 이미지 압축, 지연 소프트웨어 개발 키트 로드, 그리고 사용자가 웹에서 시작하는 경우 QR 코드를 통해 데스크톱에서 휴대폰으로 한 번의 탭으로 전환하는 기능을 제공합니다.
similarity_threshold를 조정합니다. 워크플로 오케스트레이터 분기, 1:N 결과와 Device Intelligence, Device & IP Analysis, Liveness를 결합하여 도난당한 사진, 재활용된 SIM, 공유된 기기 지문을 사용하는 사기 조직이 단일 신호만으로는 통과할 수 있었던 복합 검사에서 실패하도록 합니다.모든 세션은 7가지 명확한 상태 중 하나로 분류되므로, 귀하의 코드는 항상 무엇을 해야 할지 알 수 있습니다.
Approved, 모든 검사를 통과했습니다. 사용자를 다음 단계로 진행하세요.Declined, 하나 이상의 검사에 실패했습니다. 전체 흐름을 다시 실행하지 않고도 사용자가 특정 실패 단계를 재제출하도록 허용할 수 있습니다(예: 셀카 다시 촬영).In Review, 규정 준수 검토를 위해 플래그가 지정되었습니다. 콘솔에서 케이스를 열고 모든 신호를 확인한 후 승인 또는 거부를 결정하세요.In Progress, 사용자가 흐름 중간에 있습니다.Not Started, 링크가 전송되었지만, 사용자가 아직 열지 않았습니다. 너무 오래 방치되면 알림을 보내세요.Abandoned, 사용자가 링크를 열었지만 제시간에 완료하지 못했습니다. 다시 참여시키거나 만료시키세요.Expired, 세션 링크가 만료되었습니다. 새 세션을 생성하세요.모든 상태 변경 시 서명된 웹훅이 실행되므로, 귀하의 데이터베이스는 항상 동기화 상태를 유지합니다. 중단되거나 거부된 세션은 무료입니다.
프로덕션 데이터는 기본적으로 Amazon Web Services를 통해 유럽 연합에서 처리 및 저장됩니다. 규제 기관의 요구 사항에 따라 엔터프라이즈 계약을 통해 다른 지역을 요청할 수 있습니다.
모든 곳에서 암호화됩니다. 모든 데이터베이스, 객체 스토어, 백업에 걸쳐 저장 시 AES-256 암호화가 적용됩니다. 모든 API 호출, 웹훅, 비즈니스 콘솔 세션에서 전송 중 Transport Layer Security 1.3이 적용됩니다. 생체 인식 데이터는 별도의 고객 마스터 키로 암호화됩니다.
데이터 보존은 귀하가 제어합니다. 기본 보존 기간은 무기한(무제한)이며, 애플리케이션당 30일에서 10년 사이로 더 짧게 구성할 수 있습니다. 또한 대시보드 또는 API를 통해 언제든지 개별 세션을 삭제할 수 있습니다.
인증: SOC 2 Type 1(Type 2 감사 진행 중), ISO/IEC 27001:2022, iBeta Level 1 PAD, 그리고 Didit의 원격 신원 확인이 대면 확인보다 안전하다는 스페인 Tesoro / SEPBLAC / CNMV의 공식 증명. 전체 보고서는 /security-compliance에서 확인하세요.
Didit은 신원 인프라에 중요한 규제 기관에 대해 기본적으로 규정을 준수합니다.
자세한 메모, 모든 인증서, 모든 규제 기관 서신: /security-compliance.
세 가지 통합 경로 중 귀하의 스택에 맞는 것을 선택하세요.
세 가지 모두 동일한 대시보드, 동일한 청구, 동일한 성공당 지불 가격을 제공합니다. 단계별 가이드는 docs.didit.me/integration/integration-prompt에서 확인하세요.