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


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

임대 대리인이 해야 할 일
종이 기반 심사는 느리고 비용이 많이 들며 위조하기 쉽습니다. Didit은 이를 하나의 호스팅된 세션으로 대체합니다. 신분증 + 라이브니스 + 얼굴 매칭 + 주소 증명 + AML + 임대 자격 확인, 신청자당 $0.33, 주소 증명에 $0.20 추가. 매월 500회 무료 인증, 2초 미만의 결과.
원하는 확인 항목을 선택하세요, 신분증, 라이브니스, 얼굴 매칭, 제재, 주소, 연령, 전화, 이메일, 맞춤 질문. 대시보드에서 플로우로 드래그하거나, 동일한 플로우를 API에 게시하세요. 조건에 따라 분기하고, A/B 테스트를 실행하며, 코드가 필요 없습니다.
저희 Web, iOS, Android, React Native, Flutter SDK를 사용하여 네이티브로 임베드하세요. 호스팅된 페이지로 리디렉션하거나, 이메일, SMS, WhatsApp 등 어디든 사용자에게 링크를 보내세요. 스택에 맞는 것을 선택하세요.
Didit은 카메라, 조명 큐, 모바일 핸드오프, 접근성을 호스팅합니다. 사용자가 플로우를 진행하는 동안, 저희는 200개 이상의 사기 신호를 실시간으로 점수화하고 모든 필드를 신뢰할 수 있는 데이터 소스와 비교하여 확인합니다. 2초 이내에 결과를 제공합니다.
실시간 서명된 웹훅은 사용자가 승인, 거부되거나 검토를 위해 전송되는 즉시 데이터베이스를 동기화 상태로 유지합니다. 필요에 따라 API를 폴링하거나, 콘솔을 열어 모든 세션, 모든 신호를 검사하고 원하는 방식으로 케이스를 관리하세요.
Didit · 테넌트 KYC
2단계 / 5
신분증 촬영
Didit · 주소 증명
Didit · 데이터베이스 유효성 검사
Didit · 맞춤형 설문지 + OCR
Didit · AML
Didit · 연결된 KYC
$ 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_tenant_screening",
"vendor_data": "applicant-42",
"expected_country": "GB"
}'{ "url": "verify.didit.me/..." }$ curl https://verification.didit.me/v3/session/$SESSION/decision/ \
-H "x-api-key: $DIDIT_API_KEY"
# Decision payload (excerpted):
{ "status": "Approved",
"proof_of_address": { "status": "Approved", "address": { ... } },
"database_validation": { "service": "uk_right_to_rent" } }상태 승인됨 · 검토 중 · 거부됨 · 재제출됨You are integrating Didit into a residential-leasing platform (PropTech / build-to-rent / letting-agent archetype). You owe the landlord (or your platform owes the landlord) an evidence pack on every applicant before the keys come off the hook.
Four obligations on every application:
1. Verify the applicant's identity — government ID + liveness + face match.
2. Validate the current address — utility, bank, or registry-issued letter, cross-checked against the ID.
3. Confirm lease eligibility — Right to Rent (UK) / state-of-residence (US) / residency document (EU) / national tax id (LatAm).
4. Screen the applicant against sanctions, Politically Exposed Persons (PEP), and adverse-media lists.
Optional: run the same flow against a guarantor and stitch both back to the lease record.
Pricing (verified live):
- Tenant KYC bundle: $0.33 per applicant (ID + Liveness + Face Match + IP + AML)
- Proof of Address: $0.20 per check
- Database Validation (right-to-rent / national id): variable, per-jurisdiction
- Linked guarantor KYC: $0.33 per guarantor
- First 500 KYC 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.
- A workflow_id from the Workflow Builder that bundles ID Verification + Passive Liveness + Face Match 1:1 + Proof of Address + AML Screening + the jurisdiction-specific Database Validation node.
- Optional: a separate KYC workflow_id for the guarantor.
STEP 1 — Create the tenant session
POST https://verification.didit.me/v3/session/
Headers:
x-api-key: <your api key>
Content-Type: application/json
Body:
{
"workflow_id": "<your tenant-screening workflow id>",
"vendor_data": "<your applicant id, max 256 chars>",
"callback_url": "https://<your-app>/applications/kyc/callback",
"expected_country": "GB",
"metadata": {
"application_id": "<your internal id>",
"property_id": "<unit reference>"
}
}
Response: 201 Created with the hosted session URL. SMS or email the URL to the applicant; they complete everything on their phone in under five minutes.
STEP 2 — Read the signed webhook on KYC completion
Didit POSTs to your callback. Session statuses are Title Case With Spaces:
Body (excerpted):
{
"session_id": "<uuid>",
"vendor_data": "<your applicant id>",
"status": "Approved",
"id_verification": { "status": "Approved", "document_type": "passport", "country_code": "GB" },
"liveness": { "status": "Approved" },
"face": { "status": "Approved", "similarity_score": 0.94 },
"proof_of_address": { "status": "Approved", "document_type": "utility_bill", "address": { "line1": "10 Long Acre", "city": "London", "postal_code": "WC2E 9LH", "country": "GB" } },
"aml": { "status": "Approved", "hits": [] },
"database_validation": { "status": "Approved", "service": "uk_right_to_rent", "result": { "share_code_status": "valid", "expiry_date": "2027-08-12" } }
}
Session 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.
STEP 3 — (Optional) Spawn a guarantor session
If the workflow declares a guarantor step, the parent session returns a guarantor_session_url inside the decision payload. Email it to the guarantor and they run the same KYC flow on their phone. The result threads back to the parent tenant record automatically.
Alternatively, fire a second POST /v3/session/ with a separate guarantor workflow_id and stitch the two together by setting metadata.tenant_session_id on the guarantor call.
STEP 4 — Retrieve the full evidence pack
GET https://verification.didit.me/v3/session/{sessionId}/decision/
Headers:
x-api-key: <your api key>
Returns the full decision payload — ID block, liveness block, face match, proof-of-address result with the canonical address fields, AML hits, database-validation outcome. Use this for audit-pack export and for rendering the applicant status in your letting-agent dashboard.
STEP 5 — Decide
Branch logic:
Approved → forward the pack to the landlord, advance to lease signing.
In Review → hold the application, wait for analyst webhook update.
Declined → refuse the application, log the decline reason.
Resubmitted → applicant updated something; re-read the decision.
For Database Validation specifically — if the result indicates an expired Right to Rent share code, ask the applicant for a fresh one before moving forward.
STEP 6 — Ongoing monitoring (long leases)
For multi-year tenancies, enable Ongoing AML at $0.07/user/year. The session status updates automatically when the tenant lands on a new sanctions list or document expirations approach (passport, visa, residency permit). Your webhook fires on every state change.
No separate endpoint to call — the same workflow drives it.
WEBHOOK EVENT NAMES
- status.updated — session status changed.
- data.updated — session data changed (resubmission, expiry, ongoing AML hit).
Verify X-Signature-V2 on every payload. The webhook secret is per-environment — sandbox key is separate from production.
CONSTRAINTS
- Session statuses use Title Case With Spaces (Approved, In Review).
- Default record retention is 5 years per tenant per the EU AML package; UK Right to Rent requires document copies for the tenancy duration + one year.
- The address on the Proof of Address document MUST match the address on the underlying ID for an Approved outcome; if they differ, the session flips to In Review.
Read the docs:
- https://docs.didit.me/sessions-api/create-session
- https://docs.didit.me/sessions-api/retrieve-session
- https://docs.didit.me/core-technology/proof-of-address/overview
- https://docs.didit.me/core-technology/aml-screening/overview
- 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 인프라는 모든 세션에서 동적으로 학습하며 매일 개선됩니다.
집주인이나 임대 대리인이 열쇠를 넘겨주기 전에 신청자가 본인임을 확인하고 합법적으로 임대할 수 있는지 확인하는 과정입니다. 표준 구성 요소는 다음과 같습니다.
Didit은 이 모든 것을 하나의 호스팅된 플로우로 제공합니다. 신청자는 5분 이내에 휴대폰으로 완료하며, 대리인은 서명된 서류 팩을 받습니다.
제3자에게 주거용 부동산을 임대하는 모든 사람입니다. 실제로는 다음을 의미합니다.
영국에서는 이민법에 따라 Right to Rent 확인이 엄격한 법적 요구 사항이며, 이를 수행하지 않을 경우 세입자당 상당한 벌금이 부과됩니다. EU는 모든 부동산 전문가에게 AML 패키지에 따른 유사한 의무를 부과합니다. 미국은 주별 임대인-세입자 법률과 공정 주택 규정을 통해 이를 운영합니다.
전체 플로우는 일반적으로 처음부터 끝까지 30초 미만이 소요됩니다., 신분증을 들고, 문서를 촬영하고, 셀카를 찍으면 끝입니다. 이는 시장에서 가장 빠른 속도입니다. 기존 KYC 제공업체는 동일한 플로우에 90초 이상이 소요되는 경우가 많습니다.
백엔드에서 Didit은 사용자가 셀카를 마친 순간부터 웹훅이 실행되는 순간까지 p99 기준 2초 미만으로 결과를 반환합니다. 모바일 캡처는 느린 휴대폰과 느린 네트워크에 최적화되어 있습니다. 점진적 이미지 압축, 지연 소프트웨어 개발 키트 로드, 그리고 사용자가 웹에서 시작할 경우 QR 코드를 통해 데스크톱에서 휴대폰으로 한 번의 탭으로 전환하는 기능을 제공합니다.
세 가지 문제가 발생하며, 발생 빈도 순서는 다음과 같습니다.
기존의 종이 기반 확인은 느리고 비용이 많이 들며(기존 제공업체를 통해 신청자당 일반적으로 £15-£40), 위조하기 쉽습니다. 대부분의 대리인은 부분적인 확인만 하고 최선을 바랍니다. Didit은 이러한 절충을 없애고, 신청자당 $0.53 (KYC 번들 + 주소 증명)으로 완벽한 커버리지를 제공합니다.
모든 세션은 7가지 명확한 상태 중 하나로 처리되므로, 코드는 항상 무엇을 해야 할지 알 수 있습니다.
Approved, 모든 확인 통과. 사용자를 다음 단계로 진행합니다.Declined, 하나 이상의 확인 실패. 사용자가 특정 실패 단계를 재제출하도록 허용할 수 있습니다(예: 셀카 재촬영). 전체 플로우를 다시 실행할 필요는 없습니다.In Review, 규정 준수 검토를 위해 플래그 지정됨. 콘솔에서 케이스를 열고 모든 신호를 확인한 후 승인 또는 거부를 결정합니다.In Progress, 사용자가 플로우 중간에 있습니다.Not Started, 링크가 전송되었지만 사용자가 아직 열지 않았습니다. 너무 오래 방치되면 알림을 보냅니다.Abandoned, 사용자가 링크를 열었지만 제시간에 완료하지 못했습니다. 재참여를 유도하거나 만료시킵니다.Expired, 세션 링크가 만료되었습니다. 새 세션을 생성합니다.모든 상태 변경 시 서명된 웹훅이 실행되므로 데이터베이스는 항상 동기화됩니다. 중단되거나 거부된 세션은 무료입니다.
프로덕션 데이터는 기본적으로 유럽 연합의 Amazon Web Services에 의해 처리 및 저장됩니다. 기업 계약의 경우, 규제 기관이 요구하는 관할권을 위해 다른 지역을 요청할 수 있습니다.
모든 곳에서 암호화됩니다. 모든 데이터베이스, 객체 저장소 및 백업에 AES-256 암호화가 적용됩니다. 모든 API 호출, 웹훅 및 Business Console 세션에서 전송 계층 보안 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에서 확인할 수 있습니다.
모든 주소 증명 업로드에 대해 세 가지 유효성 검사 계층이 실행됩니다.
Didit이 잡아내는 사기 패턴: 위조된 주소가 포함된 포토샵 처리된 공과금 청구서, 다른 건물에서 온 실제 청구서, 동일한 주소의 다른 사람 소유 청구서, 만료된 청구서(90일 이상). 세 가지 계층 모두 서버 측에서 실행되며, 에이전트는 원본 업로드를 보지 않고 유효성 검사된 결과만 확인합니다.
임대 시작 시점의 확인은 필수적이지만 충분하지 않습니다. 장기 임대의 경우 세입자의 상황이 변하고 제재 목록은 매일 업데이트됩니다. Didit의 지속적인 모니터링은 다음을 포착합니다.
모든 것은 온보딩을 위해 연결했던 동일한 status.updated 웹훅을 통해 처리됩니다. 새로운 엔드포인트나 추가 통합이 필요 없습니다.
대부분의 세입자 심사 제공업체는 신청자당 £15에서 £40 사이의 가격을 책정합니다. Goodlord, Letting a Property, 오픈 뱅킹 기반의 재정 능력 도구 등이 여기에 해당합니다. 대부분은 확인 건당 요금, 임대 건당 관리 수수료, Right-to-Rent 추가 요금을 부과합니다.
Didit의 공개 가격은 KYC 번들 $0.33 + 주소 증명 $0.20 = 신청자당 $0.53입니다. 데이터베이스 유효성 검사는 관할권에 따라 다르며 서비스에 따라 일반적으로 $0.05-$0.20가 추가됩니다. 최저 요금, 약정, 국가별 추가 요금은 없습니다.
이는 동일한 법적 결과물을 기준으로 기존 스택보다 약 10배 저렴합니다. 연간 한 번 회전하는 200세대 임대용 주택 포트폴리오의 경우, 심사 비용에서 약 £3,000를 절약할 수 있으며, 신청자 경험은 더 빠르고 종이나 스캔이 필요 없습니다. 전체 가격은 /pricing에서 확인할 수 있습니다.