무료
개발, 테스트 및 초기 사용자 확보에 적합합니다.
- 매월 500건의 전체 KYC 인증
- 신분증, 라이브니스, 얼굴 매칭, 기기 및 IP 확인
- 200개 이상의 사기 신호, 차단 목록, 중복 확인
- Didit 네트워크 전반에서 KYC 재사용 가능
- 워크플로우 빌더, 케이스 관리, SDK
- AI 지원 콘솔 내 AI 에이전트, 문서, 커뮤니티.
전 세계 2,000개 이상의 기관에서 신뢰합니다.
가용성 및 요금은 이 페이지가 아닌 프로덕션 메서드 카탈로그에서 제공됩니다. 워크플로우 내에서 국가를 활성화할 수 있게 되는 즉시 여기에 표시되며, 요금은 응답 시도당 USD입니다.
지금 이용 가능
아르헨티나부터 남아프리카 공화국까지, 카탈로그에 있는 모든 국가가 국가별 요금과 함께 서비스 중입니다. 아르헨티나, 나이지리아, 파나마, 남아프리카 공화국은 등록 기관 사진을 반환하므로, 이 네 국가에서는 셀카, 수동 라이브니스, 얼굴 매칭이 동일한 조회 내에서 실행됩니다.
조회를 지원하는 국가에 대해 조회를 활성화합니다. 부분 일치, 불일치, 등록 기관이 응답하지 않을 때의 동작을 선택합니다. 사용자에게 허용되는 시도 횟수를 설정합니다. 코드가 필요 없습니다.
메서드 카탈로그에서 직접 확인
실시간 레지스트리
사진 반환
필요한 문서 사진
목록에 있는 모든 국가는 프로덕션 환경에서 실시간으로 운영됩니다. 점선으로 표시된 항목(있는 경우)은 카탈로그에는 있지만 아직 활성화되지 않은 상태입니다.
Department of Home Affairs
형식 검사는 기기에서 정보가 전송되기 전에 실행됩니다. 잘못 입력된 번호는 레지스트리에 도달하지 않으며 비용이 청구되지 않습니다.
레지스트리에서 사진을 반환하는 경우
결과별 스위치
세션에서
보증 라벨은 검토자를 위한 것입니다. 최종 사용자는 라벨, 출처 이름 또는 가격을 볼 수 없습니다.
남아프리카 공화국, 답변된 시도당 USD
모든 요금은 공개 소매 USD이며, 등록 기관이 사진을 반환하는 경우 셀카, 라이브니스 및 얼굴 일치 기능이 포함됩니다. 문서 캡처는 사용자가 대체할 때만 청구됩니다.
$ curl -X POST https://verification.didit.me/v3/session/ \
-H "x-api-key: <your-api-key>" \
-H "Content-Type: application/json" \
-d '{
"workflow_id": "wf_id_lookup",
"vendor_data": "user_42"
}'{ "url": "https://verify.didit.me/..." }const crypto = require("crypto");
// X-Signature-V2 signs canonical JSON: keys sorted as strings, compact,
// Unicode preserved. Emit the sorted entries directly - rebuilding an object
// would reorder integer-like keys ("10", "2"). Never hash req.rawBody.
const canonical = (v) =>
Array.isArray(v) ? "[" + v.map(canonical).join(",") + "]"
: v && typeof v === "object"
? "{" + Object.keys(v).sort()
.map((k) => JSON.stringify(k) + ":" + canonical(v[k])).join(",") + "}"
: JSON.stringify(v);
app.post("/webhooks/didit", express.json(), (req, res) => {
// Freshness: the signed body timestamp (refreshed on retry) must be recent
// and X-Timestamp must agree - the header alone is unsigned and replayable.
const ts = Number(req.body?.timestamp);
if (!ts || String(ts) !== req.headers["x-timestamp"] ||
Math.abs(Date.now() / 1000 - ts) > 300) return res.sendStatus(401);
const expected = crypto.createHmac("sha256", SECRET)
.update(canonical(req.body), "utf8").digest("hex");
const sig = String(req.headers["x-signature-v2"] ?? "");
const valid = sig.length === expected.length &&
crypto.timingSafeEqual(Buffer.from(sig), Buffer.from(expected));
if (!valid) return res.sendStatus(401);
const { status, decision } = req.body;
// One entry per ID Verification node; pick yours by node_id when you run several.
const [idv] = decision?.id_verifications ?? [];
// idv.verification_method: "document" | "id_lookup" | "wallet"
res.sendStatus(200);
});{ "verification_method": "id_lookup", "assurance": "data_match" }# Didit non-document verification — integrate in 5 minutes
You are adding non-document identity verification to my_stack. The user types a
national ID number plus a few personal details, and Didit checks them against
the government database that issued the number. Every URL, header, and enum
value below is canonical — do not paraphrase or "improve" them.
## 1. Provision an account
- Sign up: https://business.didit.me (no credit card required).
- Grab the API key for your application from the console.
## 2. Read the methods catalog first
Availability is server-driven per country. Never hard-code a country list.
The catalog is not a public REST endpoint. Read it one of two ways:
- Business Console (signed in): your application -> ID Verification ->
Countries tab. https://docs.didit.me/console/id-verification-methods
- Didit MCP server tool didit_workflow_get_id_verification_methods_catalog,
authenticated with the same x-api-key; pass country (ISO 3166-1 alpha-3)
to narrow it to one country. https://docs.didit.me/integration/mcp/tools
- Public mirror of the coverage table (no auth, read-only):
https://docs.didit.me/core-technology/id-verification/verification-methods#coverage
The catalog tells you, per ISO 3166-1 alpha-3 country code:
- whether id_lookup is available
- the source label and the public USD rate per answered attempt (36 countries
are live at the time of this prompt, from Argentina to South Africa)
- the exact request fields to ask the user for, with their format rules
- the response fields that come back, and which of them are optional
## 3. Create a workflow with the ID Verification (OCR) feature
POST https://verification.didit.me/v3/workflows/
-H "x-api-key: <your-api-key>"
-H "Content-Type: application/json"
The ID Verification feature's enum value is OCR (UPPERCASE — strict enum;
there is no ID_VERIFICATION alias and the API rejects it). Non-document
lookup is its id_lookup method, configured per country under config.methods
on that same feature entry, in the same request. Keys are ISO 3166-1 alpha-3.
An omitted country, or an omitted methods key, means document only.
{
"workflow_label": "Non-document onboarding",
"features": [
{
"feature": "OCR",
"config": {
"methods": {
"ZAF": {
"document": { "enabled": true },
"id_lookup": {
"enabled": true,
"max_attempts": 1,
"skip_liveness_and_face_match": false,
"on_partial_match": "fallback_to_document",
"on_no_match": "fallback_to_document",
"on_provider_error": "fallback_to_document",
"response_fields": ["gender", "citizenship", "registry_portrait"]
}
}
}
}
}
]
}
Response: the workflow uuid — use it as workflow_id in step 4.
Rules that the API enforces:
- every fallback value is either fallback_to_document or decline
- max_attempts is an integer from 1 to 5, default 1
- skip_liveness_and_face_match is only accepted where the source returns a
portrait; elsewhere it is rejected
- response_fields lists the OPTIONAL fields you want stored. Required fields
are always stored and cannot be removed
- a country whose id_lookup the catalog does not mark available is rejected
- a country with no method enabled is rejected at publish time
## 4. Create a session
POST https://verification.didit.me/v3/session/
-H "x-api-key: <your-api-key>"
-H "Content-Type: application/json"
-d '{ "workflow_id": "<id from step 3>", "vendor_data": "<your user id>" }'
Response: 201 with url (the hosted verification link), session_token and
session_id. Redirect the user to url, or open it in the SDK. The field is
named url — there is no session_url and no verification_url.
Didit asks the user for the request fields in plain language, runs the
client-side format check, then queries the registry.
Where the registry returns a portrait (Argentina, Nigeria, Panama, South
Africa), Didit also takes a selfie, runs passive liveness on it, and
face-matches it to that portrait. All of it is inside the lookup price.
## 5. Webhooks
Register a destination (console -> API & Webhooks, or
POST https://verification.didit.me/v3/webhook/destinations/ with
webhook_version "v3" and subscribed_events ["status.updated"]) and store the
secret_shared_key it returns. Verify every delivery:
Header: X-Signature-V2 (NOT X-Signature, NOT X-Signature-Simple)
Algorithm: HMAC-SHA256, hex digest, over the CANONICAL JSON of the payload:
parse the body, sort keys recursively, serialise compact with
Unicode preserved and whole-valued floats as integers. Do NOT
hash the raw request bytes — that is the v1 X-Signature
algorithm and fails for V2 whenever whitespace or key order
differs from the canonical form.
Freshness: the signed body field timestamp is the dispatch time (Unix
seconds, refreshed on every retry). Reject when
abs(now - timestamp) > 300 seconds, and reject when the
X-Timestamp header does not equal it. The header is not
covered by the signature, so it must never be the only replay
check: a captured delivery replays with just that header
refreshed.
Compare: constant-time (crypto.timingSafeEqual)
Reference handler (Express) — use it as written:
const crypto = require("crypto");
// X-Signature-V2 signs canonical JSON: keys sorted as strings, compact,
// Unicode preserved. Emit the sorted entries directly - rebuilding an object
// would reorder integer-like keys ("10", "2"). Never hash req.rawBody.
const canonical = (v) =>
Array.isArray(v) ? "[" + v.map(canonical).join(",") + "]"
: v && typeof v === "object"
? "{" + Object.keys(v).sort()
.map((k) => JSON.stringify(k) + ":" + canonical(v[k])).join(",") + "}"
: JSON.stringify(v);
app.post("/webhooks/didit", express.json(), (req, res) => {
// Freshness: the signed body timestamp (refreshed on retry) must be recent
// and X-Timestamp must agree - the header alone is unsigned and replayable.
const ts = Number(req.body?.timestamp);
if (!ts || String(ts) !== req.headers["x-timestamp"] ||
Math.abs(Date.now() / 1000 - ts) > 300) return res.sendStatus(401);
const expected = crypto.createHmac("sha256", SECRET)
.update(canonical(req.body), "utf8").digest("hex");
const sig = String(req.headers["x-signature-v2"] ?? "");
const valid = sig.length === expected.length &&
crypto.timingSafeEqual(Buffer.from(sig), Buffer.from(expected));
if (!valid) return res.sendStatus(401);
const { status, decision } = req.body;
// One entry per ID Verification node; pick yours by node_id when you run several.
const [idv] = decision?.id_verifications ?? [];
// idv.verification_method: "document" | "id_lookup" | "wallet"
res.sendStatus(200);
});
Body fields you will use: session_id, status, webhook_type, workflow_id,
vendor_data, decision.
Status values: Approved, Declined, In Review, In Progress, Not Started,
Abandoned.
## 6. Reading the result
The decision is the V3 shape: every feature result is a plural array with one
entry per workflow node. ID Verification results live in
decision.id_verifications[] — there is no singular decision.kyc (that is the
V2 shape) and no decision.id_verification. Select your entry by node_id (the
id of your ID Verification node in the workflow graph); with a single ID step,
take index 0. Each entry carries, next to the document fields:
verification_method "document" | "id_lookup" | "wallet"
assurance "documentary" | "data_match" | "cryptographic"
id_lookup source label, checked_at, attempts, outcome, one
comparison row per field with match / partial /
no_match, and the registry portrait reference when
there is one; null on document entries
fallback_from { method, reason, action } when the session fell
back to document capture or was declined; else null
A non-document entry that succeeds is assurance data_match, never
documentary. The fallbacks only govern unsuccessful lookups (partial match,
no match, provider error): a lookup that matches is accepted as the ID result
and never reaches them, so switching them to decline does not add documentary
evidence. If your risk policy needs documentary assurance for a segment, do
not enable id_lookup for that segment's country: configure
"document": { "enabled": true } alone (omit the id_lookup key, or set its
enabled to false) and route that segment to a workflow of its own when other
users may keep the lookup. As a final guard, treat any id_verifications[]
entry whose assurance is not documentary as failing that policy.
Field-by-field reference: https://docs.didit.me/reference/data-models#id-verification
## 7. Billing — what actually bills
- a registry that answered bills the lookup. Match, partial match and no
match all count as answered
- document capture bills on top when the user falls back
- a source that never answered is not billed
- a number that fails the client-side format check never reaches the registry
and is neither counted nor billed
## 8. Hard rules — do not change
- base URL for v3 endpoints: verification.didit.me
- auth header: x-api-key (lowercase, hyphenated)
- webhook headers: X-Signature-V2 plus X-Timestamp; canonical JSON, never
raw bytes; freshness from the signed body timestamp
- feature enum: OCR (uppercase) — the ID Verification feature; per-country
methods go under its config.methods
- method keys: document, id_lookup, wallet (lowercase, snake_case)
- country keys: ISO 3166-1 alpha-3, uppercase
- result path: decision.id_verifications[] (array), never decision.kyc
## 9. Verify your integration
- run one session per configured country in sandbox
- assert the id_verifications[] entry for your node has verification_method
id_lookup on the happy path
- force a no-match and assert the fallback you configured actually fires
- for a segment that needs documentary assurance, run a lookup that matches
against that segment's workflow and assert its entry has
verification_method document and assurance documentary
- assert your webhook accepts a correctly signed payload with reordered
keys, whitespace and integer-like metadata keys ("10" before "2"), and
rejects a wrong X-Signature-V2, a payload whose signed timestamp is older
than 300 seconds, and that same stale payload with only the X-Timestamp
header refreshed
Docs: https://docs.didit.me/integration/integration-prompt
개발, 테스트 및 초기 사용자 확보에 적합합니다.
25개 이상의 모듈, 투명한 가격 정책. 자동 볼륨 할인.
대규모 볼륨 및 규제 프로그램에 적합합니다.
사용량이 증가하면 볼륨 할인이 자동으로 적용됩니다. 협상이나 영업팀과의 통화가 필요 없습니다.
Didit은 신원 및 사기 방지 인프라입니다. 저희가 직접 제품을 만들 때 있었으면 했던 플랫폼으로, 개방적이고 유연하며 개발자 친화적이어서 통합해야 하는 블랙박스가 아니라 스택의 실제 부분으로 작동합니다.
하나의 API로 사람 인증(KYC, 고객 알기), 기업 인증(KYB, 기업 알기), 암호화폐 지갑 심사(KYT, 거래 알기), 그리고 실시간 거래 모니터링을 처리하며, 다음과 같은 스택을 기반으로 구축되었습니다:
기반 기술: 48개 이상의 언어로 14,000개 이상의 문서 유형, 1,000개 이상의 데이터 소스, 그리고 모든 세션에서 200개 이상의 사기 신호를 처리합니다. Didit 인프라는 모든 세션에서 동적으로 학습하며 매일 발전합니다.
사용자가 국가 ID 번호와 몇 가지 개인 정보를 입력하면, Didit은 해당 번호를 발급한 정부 데이터베이스와 대조하여 확인합니다. 이 과정에서 문서 사진은 전혀 사용되지 않습니다.
등록 기관이 본인 사진을 반환하는 경우, Didit은 셀카를 촬영하고, 패시브 라이브니스(passive liveness)를 실행하여 해당 사진과 일치시킵니다. 이 기능은 조회 가격에 포함되며 추가 요금이 부과되지 않습니다.
이는 별도의 제품이 아닙니다. ID_VERIFICATION 내의 한 가지 방법으로, 문서 캡처 및 디지털 ID 지갑과 함께 국가별로 활성화됩니다.
현재 36개국에서 해당 번호를 발급한 정부 기관을 통해 응답하고 있습니다. 여기에는 아르헨티나(RENAPER), 브라질(Receita Federal), 콜롬비아(Registraduría), 인도(UIDAI), 케냐(IPRS), 멕시코(RENAPO), 나이지리아(NIMC / NIBSS), 페루(RENIEC), 남아프리카 공화국(Department of Home Affairs) 및 신용 기관과 금융 서비스 기록을 통한 영국과 미국이 포함됩니다.
아르헨티나, 나이지리아, 파나마, 남아프리카 공화국은 등록 기관 사진을 반환하므로, 이 네 국가에서는 셀카, 패시브 라이브니스 및 얼굴 매칭도 포함됩니다.
사용 가능 여부는 방법 카탈로그를 통해 제공되므로, 워크플로는 준비되는 즉시 해당 국가를 확인할 수 있습니다. 요금이 포함된 전체 목록은 /pricing에서 확인할 수 있습니다. 문서 캡처는 여전히 220개 이상의 국가를 지원합니다. /supported-documents를 참조하십시오.
전체 흐름은 일반적으로 처음부터 끝까지 30초 미만이 소요됩니다. 이는 시장 내에서 가장 빠른 속도입니다. 기존 제공업체는 동일한 흐름에 대해 일반적으로 90초 이상이 걸립니다.
ID 번호를 입력하는 것이 문서를 촬영하는 것보다 빠르므로, 신분증 번호 인증은 일반적으로 사용자가 취할 수 있는 가장 빠른 경로입니다. 백엔드에서 Didit은 p99 기준으로 2초 미만에 결과를 반환합니다.
번호만으로는 절대 충분하지 않습니다.
등록 기관이 본인 사진을 반환하는 경우, Didit은 셀카를 촬영하고, 실제 사람이 존재하는지 증명하기 위해 패시브 라이브니스를 실행하며, 등록 기관 사진과 얼굴을 대조합니다. 잘못된 얼굴로 도난당한 번호는 통과되지 않습니다.
등록 기관이 사진을 반환하지 않는 경우, 조회는 데이터가 기록과 일치하는지 확인하지만, 본인이 존재하는지는 확인하지 않습니다. 이러한 국가의 경우, 문서 캡처로 대체 기능을 켜두거나, 동일한 워크플로에서 라이브니스와 조회를 함께 사용하십시오.
국가별로 세 가지 스위치를 통해 결정할 수 있습니다: 부분 일치, 불일치, 제공업체로부터 응답 없음. 각 스위치는 문서 캡처로 대체하거나 세션을 거부합니다.
또한 대체 기능이 실행되기 전에 사용자가 시도할 수 있는 횟수를 설정합니다. 1회에서 5회까지, 기본값은 1회입니다.
결과에는 발생한 일(실행된 방법, 대체된 방법, 이유)이 기록됩니다. 아무것도 조용히 넘어가지 않습니다.
각 등록 기관의 요금이 다르기 때문에 조회는 국가별로 가격이 책정됩니다. 도미니카 공화국은 $0.05부터 싱가포르는 $4.30까지 다양하며, 대부분의 라틴 아메리카 등록 기관은 $0.20입니다. 모든 요금은 /pricing에서 공개됩니다. 응답한 등록 기관은 조회 비용을 청구합니다. 일치, 부분 일치, 불일치 모두 응답으로 간주됩니다.
등록 기관이 사진을 반환하는 경우, 셀카, 패시브 라이브니스 및 얼굴 매칭은 해당 요금에 포함되며 추가 요금이 부과되지 않습니다. 문서 캡처는 사용자가 대체할 때만 $0.15가 추가로 청구되며, 매월 첫 500건의 문서 인증은 영원히 무료입니다.
응답하지 않은 등록 기관은 청구되지 않습니다. 형식 검사에 실패한 번호는 등록 기관에 도달하지 않으며 집계되거나 청구되지 않습니다.
선택한 지역에서 전송 중 및 저장 시 암호화되며, SOC 2 Type 1 및 Type 2, ISO 27001, GDPR을 준수합니다.
각 조회는 현지 개인 정보 보호 프레임워크(남아프리카 공화국의 POPIA, 나이지리아의 NDPR, 브라질의 LGPD, 영국의 UK GDPR, 미국의 GLBA 허용 목적)에 따라 실행되며, Didit은 등록 기관에 쿼리하기 전에 사용자에게 동의를 요청합니다.
선택적 응답 필드는 선택 해제하여 전혀 저장되지 않도록 할 수 있습니다. 필수 필드는 항상 저장됩니다. 자세한 내용은 /security-compliance에서 확인할 수 있습니다.
Didit은 핀테크, 은행, iGaming, 암호화폐, 마켓플레이스, 헬스케어 및 정부 등 규제 산업 전반에 걸쳐 2,000개 이상의 기업과 함께 프로덕션 환경에서 운영되고 있습니다.
신분증 번호 인증은 문서 기반 보증이 아닌 데이터 일치 보증을 반환합니다. 규제 기관이 문서를 요구하는 경우, 문서 캡처를 대체 기능으로 유지하거나 해당 국가를 거부하도록 설정하십시오. 보증 수준은 모든 세션에 표시되므로 감사관은 각 결정의 근거가 된 증거를 정확히 확인할 수 있습니다.
메모는 /security-compliance에서 확인할 수 있습니다.
세 가지 방법으로 몇 분 안에 가능합니다.
business.didit.me에서 시작하거나 docs.didit.me/integration/integration-prompt를 참조하십시오.