수직적으로 통합된 AI가 신원을 직접 확인합니다. 타사에 비용과 지연 시간을 추가하는 오케스트레이션 계층이 없습니다.
비싼 타사 IDV 공급자 위에 Alloy의 오케스트레이션 마크업이 있는 것에 비해 기본적으로 $0.30/체크입니다.
월 500회 무료 확인, 즉석 샌드박스, 셀프 서비스 — 엔터프라이즈 전용 데모-배포 프로세스가 없습니다.
✅ 기본 신원 확인
✅ 사내 AI 모델
✅ 타사 종속성 없음
❌ 타사 IDV 공급자를 오케스트레이션합니다.
❌ 비용 계층 및 지연 시간 추가
✅ 공개 가격으로 $0.30/체크
✅ 월 500회 무료 확인
✅ 최소 금액 또는 계약 없음
❌ 오케스트레이션 마크업 + 타사 비용
✅ <2초 추론 시간
✅ 14,000개 이상의 문서 유형
❌ 오케스트레이션 계층의 지연 시간
❌ 커버리지는 타사 공급업체에 따라 다름
✅ 핀테크, 암호화폐, iGaming, 마켓플레이스, 통신
✅ 모든 버티컬 지원
✅ 220개 이상의 국가
❌ 주로 금융 서비스
✅ MCP 서버 + 에이전트 기술
✅ 즉석 샌드박스
✅ 첫날부터 셀프 서비스
❌ 엔터프라이즈 전용 데모-배포 프로세스
✅ 기본 신원 확인
✅ 사내 AI 모델
✅ 타사 종속성 없음
❌ 타사 IDV 공급자를 오케스트레이션합니다.
❌ 비용 계층 및 지연 시간 추가
✅ 공개 가격으로 $0.30/체크
✅ 월 500회 무료 확인
✅ 최소 금액 또는 계약 없음
❌ 오케스트레이션 마크업 + 타사 비용
✅ <2초 추론 시간
✅ 14,000개 이상의 문서 유형
❌ 오케스트레이션 계층의 지연 시간
❌ 커버리지는 타사 공급업체에 따라 다름
✅ 핀테크, 암호화폐, iGaming, 마켓플레이스, 통신
✅ 모든 버티컬 지원
✅ 220개 이상의 국가
❌ 주로 금융 서비스
✅ MCP 서버 + 에이전트 기술
✅ 즉석 샌드박스
✅ 첫날부터 셀프 서비스
❌ 엔터프라이즈 전용 데모-배포 프로세스
원활한 사용자 경험
모든 상호 작용은 실시간으로 이루어집니다. 광범위한 A/B 테스트와 추론 최적화를 통해 모든 밀리초를 최적화하여 업계에서 가장 높은 완료율과 가장 빠른 인증 시간을 제공합니다.
통합하기 가장 쉬움
노코드 또는 단일 API 호출로 Didit을 사용하세요. 몇 분 안에 라이브로 전환.
주요 사항
BUILT FOR AI AGENTS
The only identity platform your AI coding agent can fully integrate — credentials, workflows, webhooks, and production code — without opening a browser.
Paste this into Claude Code, Cursor, or Copilot. Your agent registers for API credentials, creates verification workflows, sets up webhooks, and writes integration code — end to end, from a single copy-paste.
Key points
Integrate Didit identity verification into this project.
Didit is an all-in-one identity platform. Docs: https://docs.didit.me
Base URL: https://verification.didit.me/v3
Auth API: https://apx.didit.me/auth/v2
## Step 1: Get API credentials (no browser needed)
Register programmatically — 2 API calls:
POST https://apx.didit.me/auth/v2/programmatic/register/
Body: { "email": "dev@yourapp.com", "password": "SecurePass123!" }
→ Sends 6-char OTP to email
POST https://apx.didit.me/auth/v2/programmatic/verify-email/
Body: { "email": "dev@yourapp.com", "code": "ABC123" }
→ Returns { api_key, organization, application }
Or login if already registered:
POST https://apx.didit.me/auth/v2/programmatic/login/
Body: { "email": "...", "password": "..." }
→ Returns { access_token, refresh_token }
All subsequent API calls use: x-api-key: YOUR_API_KEY
## Step 2: Create a verification workflow
POST https://verification.didit.me/v3/workflows/
Headers: { "x-api-key": "YOUR_API_KEY", "content-type": "application/json" }
Body: {
"name": "KYC Flow",
"features": {
"id_verification": true,
"passive_liveness": true,
"face_match": true,
"aml_screening": false,
"nfc": false,
"ip_analysis": true,
"phone_verification": false,
"email_verification": false,
"proof_of_address": false,
"age_estimation": false,
"database_validation": false,
"questionnaire": false
}
}
→ Returns { uuid: "workflow_id", ... }
Or list existing workflows: GET /v3/workflows/
## Step 3: Create verification sessions
POST https://verification.didit.me/v3/sessions/
Body: {
"workflow_id": "WORKFLOW_ID",
"vendor_data": "your-internal-user-id",
"callback": "https://yourapp.com/api/didit/webhook"
}
→ Returns {
session_id, session_token, session_number,
url: "https://verify.didit.me/session/TOKEN"
}
Redirect users to the url, or embed via SDK:
- Web: npm install @didit-protocol/sdk-web
- React Native: npx expo install @didit-protocol/sdk-react-native
- iOS: SPM github.com/didit-protocol/sdk-ios
- Android: me.didit:didit-sdk:3.2.0
- Flutter: flutter pub add didit_sdk
## Step 4: Get results
Option A — Webhook (recommended):
Configure callback URL. Didit sends POST with session data when status changes.
Verify webhook signature using your webhook secret (GET /v3/webhook/).
Option B — Poll:
GET https://verification.didit.me/v3/sessions/{session_id}/
Session statuses: Pending → In Progress → Approved | Declined | In Review | Expired
You can also: update status (PATCH /v3/sessions/{id}/status/),
generate PDF reports (POST /v3/sessions/{id}/generate-pdf/),
or delete sessions (DELETE /v3/sessions/{id}/).
## Standalone APIs (call individually without sessions)
POST /v3/id-verification/ — Submit document images, get OCR + authenticity
POST /v3/passive-liveness/ — Verify person is real from selfie
POST /v3/face-match/ — Compare two faces (similarity 0-100)
POST /v3/face-search/ — 1:N search against all approved sessions
POST /v3/age-estimation/ — Estimate age from face
POST /v3/aml-screening/ — Screen against 1,300+ watchlists
POST /v3/proof-of-address/ — Extract + validate address documents
POST /v3/database-validation/ — Government DB checks (18+ countries)
POST /v3/email/send/ + /v3/email/check/ — Email OTP
POST /v3/phone/send/ + /v3/phone/check/ — Phone OTP (SMS/WhatsApp)
## Pricing
Free core KYC: ID Verification + Passive Liveness + Face Match + IP Analysis (500 free/month)
Premium checks: Prepaid credits, no contracts, no minimums, credits never expire.
Details: https://didit.me/pricing
## Rate Limits
300 req/min per method, 600 session creations/min.
On 429: check Retry-After header.
1. 현재 공급업체에서 사용 중인 서비스를 선택하세요
경쟁업체 비교
구식이고 비싸며 불투명한 IDV 공급업체에 지쳤습니까? Didit은 AI 기반의 개발자 우선 플랫폼을 통해 더 많은 기능, 더 공정한 가격, 즉각적인 액세스를 제공합니다. Didit이 레거시 공급업체와 기능 및 비용 면에서 어떻게 비교되는지 확인하세요.
¹ 추정치, 해당 서비스의 공식 가격은 공개적으로 이용할 수 없습니다. ² 볼륨 할인이 가능합니다. 위 ROI 계산기로 절감액을 계산해 보세요.
인증
당사의 플랫폼은 정보 보안, 데이터 개인 정보 보호 및 생체 인식 정확도에 대한 최고 국제 표준을 충족합니다.
완전한 EU 데이터 보호 규정 준수
정보 보안 관리
PAD(라이브니스 + 얼굴 매칭)
전 세계적으로 신뢰받음
인증 요구 사항에 대해 Didit을 신뢰하는 수천 개의 회사에 합류하세요
자주 묻는 질문
공급업체 전환이 중요한 결정이라는 것을 알고 있습니다. Didit으로 성공적으로 마이그레이션한 회사들의 가장 일반적인 질문에 답변했습니다.
간단히 말해, 우리는 우수한 제품과 가치 제안을 가지고 있습니다. 레거시 공급업체가 구식 모델로 운영되는 동안 Didit은 현대 디지털 경제를 위해 구축되었습니다. 차이점은 네 가지 핵심 기둥에서 분명합니다. 경제성: 무료 코어 KYC 및 성공당 지불 모델을 통해 최대 70%를 절약할 수 있습니다. 유연성: 모듈식 플랫폼을 통해 필요한 정확한 워크플로를 일품으로 구축할 수 있습니다. 사용 편의성: 코드 없는 빌더 또는 개발자 우선 API를 통해 몇 분 만에 시작할 수 있습니다. 개방성: 모든 사람에게 공개 가격, 즉시 샌드박스 및 포괄적인 문서를 제공합니다.