전 세계 1000개 이상의 기업이 신뢰
브랜딩된 경험
(UI, 도메인 및 흐름)
KYC 세션당
(볼륨에 따라 감소)
파트너를 위해 구축됨
(인프라 포함)
DIDIT 화이트 라벨을 선택하는 이유
자체 색상, 로고, 타이포그래피, 레이아웃 및 사용자 지정 도메인을 사용하여 Didit의 호스팅된 검증 흐름을 완전히 화이트 라벨링하세요. 검증 UI를 구축하거나 유지 관리할 필요 없이 원활한 브랜딩 경험을 제공하세요.
자체 프런트엔드를 만들고 서버 간 API를 통해 Didit을 사용하여 ID 검증, 패시브 라이브니스, 얼굴 일치, 얼굴 검색, AML 등을 액세스하세요. 호스팅된 UI와 완전히 분리됩니다.
화이트 라벨 가격은 워크플로에 따라 다릅니다. KYC 관련 흐름은 세션당 $0.20부터 시작(볼륨에 따라 감소)하며, 생체 인식 인증과 같은 다른 워크플로는 화이트 라벨링이 무료입니다.
Didit은 당사 인프라를 사용하는 리셀러를 지원합니다. 플랫폼을 구축하거나 검증 서비스를 재판매하는 경우 비즈니스를 확장하는 데 필요한 도구, API 및 지원을 제공합니다.

완전한 투명성
🛠️ 설치 비용 없음. 💸 최소 금액 없음. 🎊 깜짝 요금 없음. 완료된 기능에 대해서만 청구되는 명확한 가격 ✨

통합하기 가장 쉬움
노코드 또는 단일 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.
인증
당사의 플랫폼은 정보 보안, 데이터 개인 정보 보호 및 생체 인식 정확도에 대한 최고 국제 표준을 충족합니다.
완전한 EU 데이터 보호 규정 준수
정보 보안 관리
PAD(라이브니스 + 얼굴 매칭)
전 세계적으로 신뢰받음
인증 요구 사항에 대해 Didit을 신뢰하는 수천 개의 회사에 합류하세요
화이트 라벨 FAQ
색상, 로고, 타이포그래피, 레이아웃 및 자체 사용자 지정 도메인을 포함하여 Didit의 호스팅된 검증 흐름을 완전히 화이트 라벨링할 수 있습니다. 또한 자체 프런트엔드를 구축하고 백엔드에서 당사의 ID, 생체 인식 및 AML 인프라를 사용하여 서버 간 API를 통해 Didit을 사용할 수 있습니다.