Skip to main content
Didit, 신원·사기 방지 인프라 구축 위해 750만 달러 투자 유치
Didit
개발자

신원 및 사기 방지를 통합하는
가장 좋은 방법.

샌드박스를 열고, curl 명령 하나만 붙여넣으면 5분 안에 배포할 수 있습니다. 공개 문서, 5가지 Software Development Kit (SDK), 그리고 Artificial Intelligence (AI) 코딩 에이전트가 Didit을 통합할 수 있도록 Model Context Protocol (MCP) 서버를 제공합니다. KYC 전체 검증 건당 $0.33이며, 매월 500건은 무료입니다.

지원
Y CombinatorRobinhood Ventures
Firecrawl
Slash
Crnogorski Telekom
UCSF Neuroscape
Bit2Me
Shiply

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

빠른 시작

5분 만에 검증 완료.

가입부터 첫 사용자 검증까지 5단계면 충분합니다. 각 단계는 Business Console 경로와 프로그래밍 방식의 Application Programming Interface (API) 경로를 모두 제공합니다. 또는 모든 단계를 건너뛰고, AI 코딩 에이전트에 docs.didit.me/integration/integration-prompt의 통합 프롬프트를 붙여넣기만 해도 됩니다.
01 · 가입

Didit 계정을 생성합니다.

  • Business Console에서: business.didit.me에서 60초 이내에 가입하세요. 카드 정보나 영업 절차는 필요 없습니다.
  • Application Programming Interface (API)를 통해: POST https://apx.didit.me/auth/v2/programmatic/register/를 호출한 다음, POST .../verify-email/을 호출하세요.

어떤 경로를 선택하든 샌드박스 API 키를 받게 됩니다. 프로덕션과 동일한 형태이며 모든 모듈이 잠금 해제되어 있습니다.

프로그래밍 방식 등록 API
프로덕션 API 키
라이브
9bf3

지금 바로 발급, 카드, 계약, 통화 필요 없음.

  • 최소 사용량 없음
  • 계약 없음
  • 월 500회 무료
  • 오픈 샌드박스
02 · 워크플로우 구축

모듈을 선택하고 워크플로우를 구성합니다.

  • Business Console에서: 신분증명서 확인, 수동적 생체 확인, 얼굴 매칭, 자금세탁방지 (AML), 지갑 스크리닝, Internet Protocol (IP) 분석 등 19가지 이상의 모듈을 워크플로우 빌더로 드래그 앤 드롭하세요.
  • API를 통해: verification.didit.me에서 원하는 모듈과 함께 POST /v3/workflows/를 호출하세요.

어떤 경로를 선택하든 모든 세션에 전달할 workflow_id를 반환합니다.

워크플로우 생성 API
워크플로우kyc-onboarding-v3
220개 이상 국가
  • ID Verification
  • Passive Liveness
  • Face Match 1:1
  • AML Screening
  • Device & IP Analysis
  • 주소 증명
  • NFC 리딩
  • 전화번호 인증
  • 지갑 심사
  • 맞춤형 설문지
+ 15개 모듈 · 1,000개 이상의 데이터 소스세션당 $0.33
03 · 웹훅 등록

모든 결과에 대해 하나의 웹훅 대상을 설정합니다.

  • Business Console에서: 웹훅 Uniform Resource Locator (URL)을 추가하고, 이벤트를 선택한 다음, Didit이 생성한 서명 비밀 키를 복사하세요.
  • API를 통해: label, url, subscribed_events와 함께 POST /v3/webhook/destinations/를 호출하세요. 응답은 Didit이 모든 전송에 서명하는 데 사용하는 secret_shared_key를 반환합니다.
웹훅 목적지 생성 API
REST · OpenAPI 3
docs.didit.me
  • POST/v3/session/38ms201
  • GET/v3/session/{id}/decision/24ms200
  • PATCH/v3/session/{id}/update-status/31ms200
  • GET/v3/session/{id}/generate-pdf52ms200
  • POST/v3/lists/{id}/entries/face-upload/44ms201
  • POST/v3/transactions/29ms201

모든 엔드포인트 개방 · 모든 웹훅 HMAC 서명.

04 · 앱에 통합

세션을 생성합니다, SDK(Software Development Kit) 또는 직접 API를 사용합니다.

  • Software Development Kit (SDK)를 통해: 웹, iOS, Android, React Native, Flutter용 네이티브 SDK를 드롭인하세요. 내부적으로는 동일한 /v3/ 계약을 사용합니다.
  • API를 통해: workflow_idvendor_data 값(사용자 식별자)과 함께 POST /v3/session/을 호출하세요.

응답은 앱으로 리디렉션하거나 앱에 임베드할 수 있는 검증 URL을 제공합니다.

SDK 보기
POSThttps://verification.didit.me/v3/session/
curl
$ curl -X POST /v3/session/ \
  -H "x-api-key: $DIDIT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "workflow_id": "3daf4c64-...",
    "vendor_data": "u_42",
    "callback": "https://acme.com/webhook"
  }'
201생성됨
{ "session_id": "4c5c7f3a-...", "url": "verify.didit.me/..." }
05 · 결과 수신

웹훅을 수신하거나 폴링합니다.

  • 실시간 웹훅: 모든 상태 변경 시 엔드포인트가 실행됩니다. status("Approved", "Declined", "In Review", "Resubmitted" 등)를 읽고, 데이터베이스를 업데이트하고, 배포하세요.
  • 폴링을 통해: 스택이 인바운드 트래픽을 수신할 수 없을 때 유용한 GET /v3/session/:session_id/decision/을 호출하여 동일한 페이로드를 가져오세요.

상태 문자열은 정확하며 대소문자를 구분합니다. 전체 상태 머신은 docs.didit.me/integration/verification-statuses에서 확인할 수 있습니다.

검증 상태
이벤트
live
  • session.verified2.4s ago200 OK
  • session.review_started12s ago200 OK
  • session.aml_hit1m ago200 OK
  • session.declined3m ago200 OK
Didit으로 구축하기

모든 표면이 공개됩니다. 영업 전화는 없습니다.

문서를 읽고, Application Programming Interface (API)를 호출하고, Model Context Protocol (MCP) 서버에 연결하고, 통합 프롬프트를 붙여넣거나, 사전 구축된 에이전트 스킬을 배포하세요. 이 모든 것이 공개되어 있으며 무료입니다.
문서

모든 모듈, 엔드포인트, 웹훅을 찾아보세요.

빠른 시작

5분 만에 KYC 플로우를 배포하세요.

API 레퍼런스

OpenAPI 3.1 사양을 확인하세요.

SDK

웹, iOS, Android, React Native 또는 Flutter에 임베드하세요.

웹훅

모든 상태 변경에 대해 HMAC 서명된 이벤트를 수신하세요.

인증 상태

전체 세션 상태 머신을 확인하세요.

통합 프롬프트

프롬프트 하나로 KYC 통합을 배포하세요.

MCP 서버

Didit을 모든 MCP 클라이언트에 연결하세요.

에이전트 스킬

사전 구축된 인증, AML, KYB 스킬.

5분 만에 연동

하나의 curl. 다섯 가지 SDK.

하나의 curl로 인증 세션을 시작하거나, Web, iOS, Android, React Native, Flutter에 플로우를 임베드하세요. 모두 동일한 /v3/ 계약을 기반으로 합니다.
POSThttps://verification.didit.me/v3/session/
curl
$ curl -X POST /v3/session/ \
  -H "x-api-key: $DIDIT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "workflow_id": "3daf4c64-...",
    "vendor_data": "u_42",
    "callback": "https://acme.com/webhook"
  }'
201생성됨
{ "session_id": "4c5c7f3a-...", "url": "verify.didit.me/..." }
WebiOSAndroidReact NativeFlutter
npmWeb · v1.4.0
개발자를 위해 · AI 에이전트를 위해 · 개방형 설계

개발자와 AI 에이전트를 위해 구축되었습니다.

하나의 Application Programming Interface (API)로 Didit의 신원 및 사기 방지 검사를 통합하세요. 샌드박스를 열고, 공개 문서를 읽고, Model Context Protocol (MCP) 서버에 연결하거나, 모든 스택을 위한 Software Development Kit (SDK)를 가져오세요. 개발자는 반나절 만에 배포하고, AI 코딩 에이전트는 단 하나의 프롬프트로 배포합니다. UI도, 사람의 개입도, 영업 전화도, 최소 사용량도 없습니다.
01 · 하나의 API

신원 및 사기 방지를 위한 하나의 API.

하나의 Application Programming Interface (API)로 모든 신원 및 사기 확인(Know Your Customer (KYC), Know Your Business (KYB), Anti-Money Laundering (AML), 거래 모니터링, 생체 인식 매칭)을 처리합니다. 동일한 키, 동일한 워크플로우 엔진을 사용하며, 단일 세션에서 연결 가능하여 제품 간 추가 통합 작업이 필요 없습니다.
API 문서 읽기
02 · 에이전트 네이티브

단일 프롬프트로 통합하세요.

저희 Model Context Protocol (MCP) 서버는 라이브 상태이며 에이전트 스킬이 게시되어 있습니다. Claude Code, Codex 또는 Cursor에게 Didit 통합을 요청하면, 에이전트가 워크스페이스를 생성하고 워크플로우를 구성하며 첫 API 호출을 자체적으로 배포합니다. 대시보드, 사람의 개입, 지원 티켓이 필요 없습니다.
통합 프롬프트 읽기
MCP
Agent is working…
Created workspaceneobank-prod
Configured workflowIDSelfieAML
Shipped first API callPOST /v3/session · 201 Created
03 · 모듈형

어떤 플로우든. 어떤 국가든. 어떤 사용 사례든.

25개 이상의 모듈, 1,000개 이상의 정부 데이터 소스, 220개 이상의 국가, 14,000개 이상의 문서 유형, 48개 이상의 언어로 어떤 플로우든 구성할 수 있습니다. 동일한 오케스트레이터가 생체 인증, 네오뱅크를 위한 KYC, B2B 핀테크를 위한 KYB, 암호화폐 거래소를 위한 Travel Rule, 또는 마켓플레이스를 위한 지속적인 AML을 실행합니다. 필요한 검사와 순서를 직접 선택하세요.
모든 모듈 보기
워크플로우neobank-kyc-v3
220개 이상 국가
ID Verification
AML Screening
Face Match 1:1
Business Verification
Passive Liveness
Key People (UBO)
NFC Reading
Proof of Address
Device & IP Analysis
Phone Verification
Wallet Screening
Age Estimation
+ 20 more modules · 1,000+ data sources$0.33/session
04 · 셀프 서비스

유료 결제도, 영업 전화도 없습니다. 직접 사용해 보세요.

샌드박스는 즉시 이용 가능합니다. 문서와 API는 공개되어 있으며, 코드에 접근하는 데 데모 장벽이 없습니다. 가입하고, 키를 받아 당일 바로 배포하세요. 영업팀은 필요할 때 언제든 도와드리며, 결코 방해가 되지 않습니다.
샌드박스 사용해 보기
프로덕션 API 키
라이브
9bf3

지금 바로 발급, 카드, 계약, 통화 필요 없음.

  • 최소 사용량 없음
  • 계약 없음
  • 월 500회 무료
  • 오픈 샌드박스
05 · 사용량 기반

사용한 만큼만 지불하세요. 그게 전부입니다.

Didit은 기존 KYC 공급업체보다 3~5배 저렴하며, 모든 가격은 /pricing에 공개되어 있습니다. 전체 KYC 번들 $0.33, 지갑 스크리닝 $0.15, 기기 및 IP 분석 $0.03, 매월 500건의 무료 인증을 제공합니다. 최소 사용량, 연간 계약, 초과 요금에 대한 걱정 없이, 페이지에 명시된 가격이 청구서의 가격입니다.
모든 가격 보기
공개 가격표
/pricing
  • ID Verification$0.15
  • Passive Liveness$0.10
  • Face Match 1:1$0.05
  • AML Screening$0.20
  • Device & IP Analysis$0.03
  • 지갑 스크리닝 (KYT)$0.15
풀 KYC 번들$0.00

월 500회 무료 · 최소 사용량 없음 · 연간 계약 없음.

06 · 개방형 인프라

개방형 API. 그 위에 구축하세요.

모든 엔드포인트는 개방되어 있으며 문서화되어 있습니다. 세션 상태 변경, 얼굴 블랙리스트 추가, 결정 PDF 다운로드, 워크플로우 편집, 이벤트 로그 쿼리 등이 가능합니다. 웹훅은 HMAC(Hash-based Message Authentication Code)로 서명되어 모든 이벤트가 Didit에서 발생했음을 증명할 수 있습니다. Didit은 폐쇄형 앱이 아닌 인프라입니다.
API 살펴보기
REST · OpenAPI 3
docs.didit.me
  • POST/v3/session/38ms201
  • GET/v3/session/{id}/decision/24ms200
  • PATCH/v3/session/{id}/update-status/31ms200
  • GET/v3/session/{id}/generate-pdf52ms200
  • POST/v3/lists/{id}/entries/face-upload/44ms201
  • POST/v3/transactions/29ms201

모든 엔드포인트 개방 · 모든 웹훅 HMAC 서명.

07 · SDK

모든 플랫폼을 위한 SDK.

Web, iOS, Android, React Native, Flutter 등 모든 스택을 위한 SDK를 제공합니다. 백엔드에는 REST API, 서명된 웹훅, OpenAPI 3 스펙, 그리고 Zapier, Shopify, Salesforce 통합이 준비되어 있습니다. 모든 인터페이스에는 샘플, 타입, 5분 만에 시작할 수 있는 가이드가 함께 제공됩니다.
SDK 살펴보기
WebiOSAndroidReact NativeFlutter
npmWeb · v1.4.0
08 · 확장 최적화 인프라

시장 내 가장 빠른 인증 속도.

전체 인증의 99%가 2초 이내에 완료됩니다. 이는 실제 운영 환경에서 측정된 수치이며, 단순히 주장하는 것이 아닙니다. 99.99%의 SLA(Service-Level Agreement)를 목표로 하며, 지난 12개월 동안 100% 가동 시간을 유지했고, 단 한 번도 침해된 적이 없습니다. iPhone, Android, 데스크톱, 태블릿, 5G 또는 2G 등 모든 기기와 네트워크에 최적화되어 있으며, 이미 매월 수백만 건의 인증을 처리하고 있습니다.
실시간 상태 보기
종단 간 지연 시간 · 30일
99.99% SLA
  • p500.00s
  • p950.00s
  • p990.00s

시장 내 가장 빠른 본인 인증 · iPhone, Android, 데스크톱, 태블릿, 5G 또는 2G.

세 가지 티어, 하나의 가격표

무료로 시작하고, 사용량에 따라 지불하며, 엔터프라이즈로 확장하세요.

매월 500건의 무료 본인 확인을 영구적으로 제공합니다. 프로덕션 환경에서는 사용한 만큼만 지불하세요. 엔터프라이즈 고객에게는 맞춤형 계약, 데이터 상주 및 SLA(서비스 수준 협약)를 제공합니다.
무료

무료

월 $0. 신용카드 정보가 필요 없습니다.

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

사용량 기반 요금제

사용한 만큼만 지불하세요. 25개 이상의 모듈. 모듈별 공개 가격, 월 최소 요금 없음.

  • 전체 KYC $0.33 (신분증 + 생체 인식 + IP / 기기)
  • 10,000개 이상의 AML 데이터셋, 제재, PEP, 부정적 미디어
  • 데이터베이스 검증을 위한 1,000개 이상의 정부 데이터 소스
  • 거래당 $0.02의 거래 모니터링
  • 기업당 $2.00의 실시간 KYB
  • 검사당 $0.15의 지갑 스크리닝
  • 화이트 라벨 검증 플로우, 귀사의 브랜드, Didit의 인프라
엔터프라이즈

엔터프라이즈

맞춤형 MSA 및 SLA. 대규모 볼륨 및 규제 프로그램에 적합합니다.

  • 연간 계약
  • 맞춤형 MSA, DPA, SLA
  • 전용 Slack 및 WhatsApp 채널
  • 주문형 수동 검토자
  • 리셀러 및 화이트 라벨 조건
  • 독점 기능 및 파트너 통합
  • 전담 CSM, 보안 검토, 규정 준수 지원

무료로 시작 → 확인 실행 시에만 지불 → 맞춤형 계약, SLA 또는 데이터 상주를 위해 엔터프라이즈 잠금 해제.

FAQ

개발자 질문, 답변해 드립니다.

통합 콜에서 엔지니어링 팀에 제공하는 답변과 동일합니다. 그 외 문의사항은 support@didit.me로 연락 주세요.
How do I integrate Didit?

Five steps from signup to first verdict.

  • Create your account at business.didit.me, or call POST https://apx.didit.me/auth/v2/programmatic/register/.
  • Build a workflow in the Business Console, or call POST /v3/workflows/.
  • Register a webhook destination via the console, or call POST /v3/webhook/destinations/ (Didit returns the signing secret in the response).
  • Create a session with POST /v3/session/, passing workflow_id and vendor_data (your user identifier). Redirect the user to the returned URL, or drop in a native Software Development Kit (SDK) on the same /v3/ contract.
  • Receive the verdict on the signed webhook, or poll GET /v3/session/:session_id/decision/.

One /v3/ Application Programming Interface (API) covers Know Your Customer (KYC), Know Your Business (KYB), Transaction Monitoring, and Wallet Screening (KYT, know your transaction). 500 verifications free every month, forever, no credit card.

Is there a sandbox I can play with right now?

Yes, under sixty seconds, no credit card. Sign up at business.didit.me (or register programmatically with POST https://apx.didit.me/auth/v2/programmatic/register/) and you land in a sandbox workspace with a real Application Programming Interface (API) key.

  • Same shape as production, deterministic decisions, every module unlocked.
  • Real /v3/ endpoints, real webhooks, real document samples.
  • Switch to live whenever you are ready, same keys, same Uniform Resource Locators (URLs), same contract.
Which Software Development Kits (SDKs) do you ship?

Five first-party SDKs, all open-source, all on public docs:

  • Web, JavaScript / TypeScript, framework-agnostic, iframe embed or hosted-flow redirect.
  • iOS, Swift, distributed as XCFramework.
  • Android, Kotlin, via Maven Central.
  • React Native, TypeScript bindings on top of native modules (TurboModules).
  • Flutter, Dart wrapper around the same native SDKs.

Every SDK calls the same /v3/ contract under the hood, so you can mix and match, Web on your site, native on mobile. Reference at docs.didit.me/integration/web-sdks/overview.

How do webhooks work?

Register one destination; Didit signs every delivery.

  • Configure your endpoint via the Business Console, or call POST /v3/webhook/destinations/ with label, url, and subscribed_events.
  • Didit returns a secret_shared_key in the response. Use it to verify the Hash-based Message Authentication Code (HMAC)-SHA256 signature on every incoming webhook (header: X-Signature-V2).
  • Each payload carries an exact, case-sensitive status, "Approved", "Declined", "In Review", "Resubmitted", and more. Full state machine at docs.didit.me/integration/verification-statuses.
  • Retries use exponential backoff until you return 2xx; every delivery is logged and replayable on demand from the console.

Full reference at docs.didit.me/integration/webhooks.

What are the rate limits, and what happens at scale?

Generous defaults on every plan, tuned upward per account.

  • Free tier, sandbox plus 500 production checks every month, forever.
  • Pay-per-usage, burst limits scale automatically with sustained volume. You will not hit a wall mid-launch.
  • Enterprise, custom rate limits, dedicated capacity, and uptime commitments in the Master Services Agreement (MSA). Talk to us at support@didit.me.

Target capacity per region at status.didit.me. 100% real uptime over the last 6 months across millions of verifications a month.

Can I integrate with Claude Code, Cursor, or other AI coding tools?

Yes, paste one prompt and ship. Drop the canonical integration prompt at docs.didit.me/integration/integration-prompt into Claude Code, Cursor, Codex, Devin, Aider, or Replit Agent. The agent provisions the workflow, wires the webhook, and runs a smoke test end-to-end.

Agent-initiated sessions pay the same public price as direct API calls, $0.33 per full Know Your Customer (KYC), $0.15 per standalone Identity Document Verification, $0.15 per wallet screen. Free, no extra setup, works with any Model Context Protocol (MCP)-aware client.

Where is the changelog, and how do you version the API?

Monthly release notes at `docs.didit.me/changelog`, every shipped module, every webhook event added, every breaking change called out.

  • The OpenAPI 3.1 specification at docs.didit.me/openapi-25.json is versioned alongside the docs. Import it into Postman or generate clients in any language.
  • Versioning is additive by default. New fields, new optional parameters, and new webhook events ship without a version bump. Breaking changes get a new /v4/ namespace and a published deprecation window.
  • We never silently change a field's meaning, if a verdict shape, signature scheme, or status enum changes, it ships behind a header and is announced before cut-over.
How do I monitor uptime and what is the incident process?

`status.didit.me` publishes real-time uptime and incident history per region, verification, webhooks, console, docs. No login required.

  • Subscribe via Really Simple Syndication (RSS), email, or webhook for outage alerts.
  • Track record: 100% real uptime over the last 6 months; 99.99% availability target in the Service Level Agreement (SLA).
  • Every incident gets a public post-mortem on the same page.
  • Enterprise contracts add a named on-call engineer, a dedicated Slack or Microsoft Teams shared channel, and incident-severity Service Level Objectives in the Master Services Agreement (MSA).

신원 및 사기 방지 인프라.

KYC, KYB, 거래 모니터링, 지갑 심사를 위한 단일 API. 5분 만에 통합하세요.

AI에게 이 페이지 요약 요청