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


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

원격 의료 플랫폼이 제공해야 하는 것
임상 안전과 약물 오용 방지 모두 신뢰할 수 있는 환자 신원에 달려 있습니다. Didit은 온보딩 KYC와 재처방별 생체 재인증을 두 가지 짧은 호스팅 플로우로 제공합니다. 온보딩에 $0.33, 재처방당 $0.10. 매월 500회 무료 인증, SOC 2 Type 1 및 ISO/IEC 27001 인증, 생체 템플릿만 사용합니다.
신분증, Liveness, Face Match, 제재 목록, 주소, 연령, 전화번호, 이메일, 맞춤 질문 등 원하는 검사를 선택하세요. 대시보드에서 플로우로 드래그하거나, 동일한 플로우를 API에 게시하세요. 조건에 따라 분기하고, A/B 테스트를 실행하며, 코드가 필요 없습니다.
웹, iOS, Android, React Native 또는 Flutter SDK를 사용하여 네이티브로 임베드하세요. 호스팅 페이지로 리디렉션하세요. 또는 이메일, SMS, WhatsApp 등 어디든 사용자에게 링크를 보내세요. 스택에 맞는 것을 선택하세요.
Didit은 카메라, 조명 큐, 모바일 핸드오프, 접근성을 호스팅합니다. 사용자가 온보딩 플로우를 진행하는 동안, 200개 이상의 사기 신호를 실시간으로 분석하고 모든 필드를 신뢰할 수 있는 데이터 소스와 대조하여 확인합니다. 이 모든 과정이 2초 이내에 완료됩니다.
실시간 서명된 웹훅은 사용자가 승인, 거부되거나 검토를 위해 전송되는 즉시 데이터베이스를 동기화합니다. 필요에 따라 API를 폴링하거나, 콘솔을 열어 모든 세션과 신호를 검사하고 케이스를 직접 관리할 수 있습니다.
Didit · 환자 KYC
3단계 / 5단계
정지 상태로 생체 인식
Didit · 연령 추정
Didit · 데이터베이스 유효성 검사
Didit · DEA / Schedule II 정책
Didit · 맞춤형 설문지
Didit · 생체 인증
$ 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_patient_onboarding",
"vendor_data": "patient-42"
}'{ Approved에 저장된 바인딩 템플릿. }$ curl -X POST https://verification.didit.me/v3/session/ \
-H "x-api-key: $DIDIT_API_KEY" \
-d '{
"workflow_id": "wf_biometric_reauth",
"vendor_data": "patient-42",
"metadata": { "context": "controlled_substance_refill" },
// base64 enrolment selfie, ≤ 1MB
"portrait_image": "/9j/4AAQSkZJRgABAQE..."
}'{ 상태 승인됨 → 전자 처방전 발송. }You are integrating Didit into a telehealth platform (Doctolib / Teladoc / Hims & Hers / Ro / Tessa Health archetype). You owe the clinical and pharmacy layers a trustworthy patient identity at onboarding and at every refill of a controlled prescription.
Three obligations at onboarding:
1. Verify the patient's identity — government ID + liveness + face match.
2. Confirm age — adult, adolescent, or pediatric — to route to the correct clinical pathway without surfacing date of birth on every downstream call.
3. Capture consent — HIPAA Notice of Privacy Practices acknowledgement, clinical consent (telemedicine + electronic health record + e-prescription), intake history.
One obligation at every refill or new appointment:
4. Biometric reauthentication — a 1-second selfie matched to the binding template established at onboarding. Anti-diversion control for US Drug Enforcement Administration (DEA) Schedule II-V medications.
Optional but recommended:
5. Insurance card capture + payer validation — OCR the card, look up the payer, ping eligibility if your stack supports 270/271 EDI.
Pricing (verified live):
- Onboarding Know Your Customer (KYC) bundle (ID + Liveness + Face Match + IP + AML): $0.33 per patient
- Age Estimation: $0.10 per patient
- Custom Questionnaire (HIPAA + clinical consent): $0.10 per submission
- Biometric Authentication (refill / new visit): $0.10 per auth
- 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 for patient onboarding that bundles ID Verification + Passive Liveness + Face Match 1:1 + Age Estimation + Custom Questionnaire.
- A workflow_id for biometric reauthentication (selfie + liveness + 1:1 face match against the binding template).
STEP 1 — Create the patient onboarding session
POST https://verification.didit.me/v3/session/
Headers:
x-api-key: <your api key>
Content-Type: application/json
Body:
{
"workflow_id": "<your patient onboarding workflow id>",
"vendor_data": "<your patient id, max 256 chars>",
"callback_url": "https://<your-app>/patients/kyc/callback",
"metadata": {
"patient_id": "<your internal id>",
"scheduling_context": "new_visit"
}
}
Response: 201 Created with the hosted session URL. Send it to the patient through your booking flow; they complete identity + consent on their phone in under five minutes.
STEP 2 — Read the signed webhook on onboarding completion
Didit POSTs to your callback. Session statuses are Title Case With Spaces:
Body (excerpted):
{
"session_id": "<uuid>",
"vendor_data": "<your patient id>",
"status": "Approved",
"id_verification": { "status": "Approved", "document_type": "drivers_license", "country_code": "US" },
"liveness": { "status": "Approved" },
"face": { "status": "Approved", "similarity_score": 0.94 },
"age_estimation": { "status": "Approved", "estimated_age_bucket": "ADULT" },
"questionnaire": { "status": "Approved", "responses": { "hipaa_ack": true, "telehealth_consent": true } }
}
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 — Persist the binding biometric template
When the onboarding session is Approved, Didit stores a biometric template under the patient's vendor_data automatically. You don't need to fetch or store the raw selfie — it's discarded after the template is generated. The template lives in EU data centres and is used for every future face-match against this patient.
STEP 4 — Biometric reauthentication at refill / new appointment
POST https://verification.didit.me/v3/session/
Headers:
x-api-key: <your api key>
Content-Type: application/json
Body:
{
"workflow_id": "<your biometric reauth workflow id>",
"vendor_data": "<the same patient id as onboarding>",
"callback_url": "https://<your-app>/patients/reauth/callback",
"metadata": {
"context": "controlled_substance_refill",
"prescription_id": "<your rx reference>"
}
}
The reauth workflow runs Passive Liveness + Face Match 1:1 against the binding template. Sub-1-second median verdict. $0.10 per auth. Use this BEFORE every controlled-substance e-prescription fires.
STEP 5 — Decide
Branch logic on the parent session status:
Approved → onboard the patient, allow scheduling.
In Review → hold the visit, wait for analyst webhook update.
Declined → refuse onboarding, log the decline reason.
Resubmitted → patient updated something; re-read the decision.
On the reauth session:
Approved → fire the e-prescription / book the visit.
Declined → refuse the refill, require in-person identity check.
STEP 6 — Insurance card capture (optional)
Add a Database Validation node to your onboarding workflow against the US payer database (Aetna, BCBS, UnitedHealthcare, Cigna, Kaiser) or the EU national health-insurance system (ES Seguridad Social, DE GKV, FR CPAM, IT SSN). The patient uploads the card; Didit OCRs the member id, group, and payer name, then validates against the payer database. The card image is discarded after parse — only the validated payload is retained.
WEBHOOK EVENT NAMES
- status.updated — session status changed.
- data.updated — session data changed (resubmission, consent re-collection).
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).
- The biometric template is the binding identity — once a patient is onboarded, every future reauth references it. If you delete the patient, delete the template too via the Business Console (GDPR / HIPAA right-to-deletion compliance).
- HIPAA-protected information (PHI) and biometric templates are stored in EU data centres for EU patients; US-specific deployments can request a US tenant.
- For controlled-substance dispense, run a fresh biometric reauth on every refill — this is the anti-diversion control US DEA Schedule II / III requires under the SUPPORT Act.
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/face-match/overview
- https://docs.didit.me/core-technology/age-estimation/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, 거래 알기), 그리고 실시간 거래 모니터링을 지원하며, 다음과 같은 스택을 기반으로 구축되었습니다:
기반 기술: 48개 이상의 언어로 된 14,000개 이상의 문서 유형, 1,000개 이상의 데이터 소스, 그리고 모든 세션에서 200개 이상의 사기 신호를 분석합니다. Didit 인프라는 모든 세션에서 동적으로 학습하며 매일 발전합니다.
대면 진료소에서는 자연스럽게 얻을 수 있는 세 가지 이유가 있습니다:
대면 진료소에서는 체크인 시 운전면허증을 요청합니다. 원격 의료는 이를 최소한 동등한 수준의 원격 신원 확인으로 대체해야 합니다. Didit은 환자가 휴대폰으로 5분 이내에 완료할 수 있는 호스팅된 플로우를 환자당 $0.33에 제공합니다.
HIPAA는 미국 건강 보험 이동성 및 책임에 관한 법률(Health Insurance Portability and Accountability Act)입니다. 개인 정보 보호 규칙과 보안 규칙은 보호 대상 건강 정보(PHI)를 관리적, 물리적, 기술적 보호 장치로 처리하도록 요구합니다.
특히 신원 확인과 관련하여:
Didit은 모든 유료 플랜에 BAA를 포함하며, 생체 인식 템플릿만 저장하고 원본 셀카는 템플릿 생성 후 삭제합니다. SOC 2 Type 1 및 ISO/IEC 27001 인증은 보안 기준을 충족합니다. EU 환자는 EU 전용 스토리지를 요청할 수 있으며, 미국 전용 배포는 미국 테넌트를 요청할 수 있습니다.
전체 플로우는 일반적으로 처음부터 끝까지 30초 미만이 소요됩니다., 신분증을 들고, 문서를 촬영하고, 셀카를 찍으면 완료됩니다. 이는 시장에서 가장 빠른 속도입니다. 기존 KYC 제공업체는 동일한 플로우에 90초 이상이 소요되는 경우가 많습니다.
백엔드에서 Didit은 사용자가 셀카를 완료한 시점부터 웹훅이 실행되는 시점까지 p99 기준 2초 미만으로 결과를 반환합니다. 모바일 캡처는 느린 휴대폰과 느린 네트워크에 최적화되어 있습니다: 점진적 이미지 압축, 지연된 SDK 로드, 그리고 사용자가 웹에서 시작하는 경우 QR 코드를 통해 데스크톱에서 휴대폰으로 한 번의 탭으로 전환할 수 있습니다.
연령은 진료 경로를 결정합니다. 14세 청소년이 피임 상담을 요청하는 경우와 28세 성인이 요청하는 경우, 70세 노인이 인지 저하 검사를 요청하는 경우는 임상 및 동의 경로가 다릅니다. 모든 다운스트림 호출에서 환자의 생년월일을 노출하는 것은 라우팅 결정에 필요한 것보다 더 많은 정보를 유출합니다.
연령 추정은 생년월일을 노출하지 않고, 생체 활성 확인에 사용된 동일한 셀카에서 환자의 코호트(집단)인 성인, 청소년, 아동을 반환합니다. 임상 계층은 코호트를 기반으로 라우팅하며, 감사 추적은 생년월일을 환자 기록에 보관합니다.
건당 $0.10입니다. 추정치가 경계선에 있을 때는 ID 폴백으로 지원됩니다. 소아 환자의 경우, 워크플로우는 보호자 동의 플로우로 자동으로 분기될 수 있습니다.
모든 세션은 7가지 명확한 상태 중 하나로 귀결되므로, 귀하의 코드는 항상 무엇을 해야 할지 알 수 있습니다:
Approved, 모든 확인을 통과했습니다. 사용자를 다음 단계로 진행하세요.Declined, 하나 이상의 확인에 실패했습니다. 전체 플로우를 다시 실행하지 않고 특정 실패 단계(예: 셀카 다시 찍기)를 재제출하도록 허용할 수 있습니다.In Review, 규정 준수 검토를 위해 플래그가 지정되었습니다. 콘솔에서 케이스를 열고 모든 신호를 확인한 후 승인 또는 거부를 결정하세요.In Progress, 사용자가 플로우 진행 중입니다.Not Started, 링크가 전송되었지만 사용자가 아직 열지 않았습니다. 너무 오래 방치되면 알림을 보내세요.Abandoned, 사용자가 링크를 열었지만 제시간에 완료하지 못했습니다. 다시 참여시키거나 만료시키세요.Expired, 세션 링크가 만료되었습니다. 새 세션을 생성하세요.모든 상태 변경 시 서명된 웹훅이 실행되므로 귀하의 데이터베이스는 항상 동기화 상태를 유지합니다. 중단되거나 거부된 세션은 무료입니다.
프로덕션 데이터는 기본적으로 유럽 연합의 Amazon Web Services에 처리 및 저장됩니다. 엔터프라이즈 계약은 규제 당국이 요구하는 관할권에 대해 대체 지역을 요청할 수 있습니다.
모든 곳에서 암호화됩니다. 모든 데이터베이스, 객체 스토어 및 백업에서 AES-256 암호화가 적용됩니다. 모든 API 호출, 웹훅 및 비즈니스 콘솔 세션에서 전송 중에는 Transport Layer Security 1.3이 적용됩니다. 생체 인식 데이터는 별도의 고객 마스터 키(Customer Master Key)로 암호화됩니다.
데이터 보존은 귀하가 제어합니다. 기본 보존 기간은 무기한(무제한)이며, 애플리케이션당 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에서 확인하세요.
네, 재사용 가능한 KYC는 확인 스택 위에 있는 무료 배포 계층입니다. 환자가 한 번 온보딩되면, 환자의 동의하에 다른 Didit 통합 제공업체에 해당 신원을 제시할 수 있어 재확인 피로도를 줄일 수 있습니다.
의료 분야에서 중요한 점:
재사용 가능한 KYC는 영원히 무료입니다. 환자는 동의를 소유하며 Didit 신원 지갑을 통해 언제든지 제공업체별 공유를 철회할 수 있습니다.
대부분의 의료 신원 제공업체는 건당 $3에서 $8 사이의 가격을 책정하며, 종종 월 수천 달러의 최소 요금과 HIPAA 테넌시를 위한 주별 추가 요금이 있습니다. 생체 인식 재인증에는 $0.30~$1.00가 추가됩니다.
Didit의 공개 가격은 온보딩 KYC 번들당 $0.33 + 생체 인식 재인증당 $0.10입니다. 최소 요금이나 주별 추가 요금은 없습니다. 매월 첫 500건의 확인은 무료이므로 대부분의 파일럿 및 소규모 진료소는 완전히 무료로 이용할 수 있습니다.
이는 동일한 규제 결과물에 대해 기존 스택보다 약 10배 저렴합니다. 연간 환자 5,000명, 환자당 연간 2회 재처방이 있는 원격 의료 기관의 경우, 연간 약 $12,000를 절약할 수 있으며, 환자 경험은 더 빨라지고 동일한 셀카로 모든 재처방에 사용할 수 있습니다. 전체 가격은 /pricing에서 확인하세요.
의료 기록 보존 기간은 다른 어떤 분야보다 깁니다:
Didit의 처리 방식:
ISO 27001, SOC 2 Type 1, iBeta Level 1 스푸핑 방지 인증서는 모두 /security-compliance에서 다운로드할 수 있습니다. 모든 유료 플랜에 비즈니스 파트너 계약(BAA)이 포함됩니다.