無料
開発、テスト、そして最初のユーザー向け。
- 毎月500件のフルKYC認証
- 本人確認、生体認証、顔照合、デバイス&IP
- 200以上の不正検知シグナル、ブロックリスト、重複チェック
- Diditネットワーク全体でKYCを再利用可能
- ワークフロービルダー、ケース管理、SDK
- AIサポート コンソール内AIエージェント、ドキュメント、コミュニティ。
世界中の2,000以上の組織から信頼されています。
利用可能性と料金は、このページではなく、本番環境のメソッドカタログから取得されます。ワークフロー内で有効化できるようになった時点で、その国がここに表示されます。料金は、回答された試行1回あたりの米ドルです。
本日より利用可能
アルゼンチンから南アフリカまで、カタログに掲載されているすべての国が利用可能で、国ごとの料金が明記されています。アルゼンチン、ナイジェリア、パナマ、南アフリカではレジストリ写真が返されるため、これらの4カ国では、セルフィー、パッシブライブネス、顔照合も同じルックアップ内で実行されます。
対応する国でルックアップを有効にします。部分一致、不一致、レジストリからの応答がない場合の動作を設定します。ユーザーが試行できる回数を設定します。コードは不要です。
メソッドカタログから直接
稼働中のレジストリ
写真返却
書類写真が必要
記載されているすべての国は本番環境で稼働中です。ここに破線で表示されているエントリは、カタログにはありますが、まだ有効化されていません。
Department of Home Affairs
フォーマットチェックは、デバイスからデータが送信される前に実行されます。入力ミスのある番号がレジストリに到達することはなく、課金もされません。
レジストリが写真を返す場合
結果ごとにスイッチを設定
セッション上
アシュアランスラベルは審査担当者向けです。エンドユーザーがこれら、ソース名、または料金を見ることはありません。
南アフリカ、回答された試行ごとに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、Know Your Customer)、企業の本人確認(KYB、Know Your Business)、暗号資産ウォレットのスクリーニング(KYT、Know Your Transaction)、リアルタイムのトランザクション監視をカバーします。そのスタックは、以下の特長を備えています。
基盤となるフットプリント:48以上の言語に対応する14,000種類以上の書類タイプ、1,000以上のデータソース、そしてすべてのセッションで200以上の不正シグナルを検出します。Diditのインフラは、すべてのセッションから動的に学習し、日々進化しています。
ユーザーが国民ID番号といくつかの個人情報を入力すると、Diditがその情報を番号を発行した政府データベースと照合します。このフローでは、書類の写真は一切使用しません。
レジストリが本人の写真を返す場合、Diditはセルフィーも撮影し、パッシブライブネスを実行して、その写真と照合します。これはルックアップ料金に含まれており、追加料金は発生しません。
これは独立した製品ではありません。ID_VERIFICATION内の1つの方法であり、書類キャプチャやデジタルIDウォレットと同様に、国ごとに有効化できます。
現在、36カ国が対応しており、それぞれ番号を発行した政府機関を通じて行われます。これには、アルゼンチン(RENAPER)、ブラジル(Receita Federal)、コロンビア(Registraduría)、インド(UIDAI)、ケニア(IPRS)、メキシコ(RENAPO)、ナイジェリア(NIMC / NIBSS)、ペルー(RENIEC)、南アフリカ(Department of Home Affairs)、そして信用情報機関や金融サービス記録を通じたイギリスとアメリカが含まれます。
アルゼンチン、ナイジェリア、パナマ、南アフリカはレジストリの写真を返すため、これら4カ国ではセルフィー、パッシブライブネス、顔照合も含まれます。
利用可能性はメソッドカタログによって提供されるため、準備ができた国はすぐにワークフローに表示されます。料金を含む全リストは/pricingでご覧いただけます。書類キャプチャは引き続き220以上の国をカバーしています。/supported-documentsをご覧ください。
フルフローは通常、エンドツーエンドで30秒未満で完了します。これは市場最速です。従来のプロバイダーでは、同じフローで90秒以上かかることが一般的です。
ID番号の入力は書類の撮影よりも速いため、書類不要のルックアップは通常、ユーザーが最も早く完了できる方法です。バックエンドでは、Diditはp99で2秒未満で結果を返します。
番号だけでは決して十分ではありません。
レジストリが本人の写真を返す場合、Diditはセルフィーを撮影し、パッシブライブネスを実行して本物の人間であることを証明し、その写真をレジストリの写真と顔照合します。顔が一致しない盗まれた番号は通過しません。
レジストリが写真を返さない場合、ルックアップはデータが記録と一致することを確認しますが、本人が存在することまでは確認しません。これらの国では、書類キャプチャへのフォールバックを有効にするか、同じワークフロー内でルックアップとライブネスを組み合わせることをお勧めします。
国ごとに、部分一致、不一致、プロバイダーからの応答なしの3つのスイッチで設定できます。それぞれ、書類キャプチャにフォールバックするか、セッションを拒否するかを選択します。
また、フォールバックが実行されるまでにユーザーが試行できる回数も設定できます(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 permissible purpose)に基づいて実行され、Diditは、同意が必要なレジストリに問い合わせる前にユーザーに同意を求めます。
オプションの応答フィールドはチェックを外すことで、一切保存されないようにできます。必須フィールドは常に保存されます。詳細は/security-complianceをご覧ください。
Diditは、フィンテック、銀行、iGaming、暗号資産、マーケットプレイス、ヘルスケア、政府機関など、規制対象業界の2,000社以上の企業で本番稼働しています。
書類不要のルックアップは、書類による保証ではなく、データの一致による保証を提供します。規制当局が書類を要求する場合、書類キャプチャをフォールバックとして維持するか、その国を拒否するように設定してください。保証レベルはすべてのセッションで記録されるため、監査人は各決定の根拠となった証拠を正確に確認できます。
メモは/security-complianceにあります。
数分で、3つの方法があります。
business.didit.meから始めるか、docs.didit.me/integration/integration-promptをご覧ください。