無料
開発、テスト、そして最初のユーザー向け。
- 毎月500件のフルKYC認証
- 本人確認、生体認証、顔照合、デバイス&IP
- 200以上の不正検知シグナル、ブロックリスト、重複チェック
- Diditネットワーク全体でKYCを再利用可能
- ワークフロービルダー、ケース管理、SDK
- AIサポート コンソール内AIエージェント、ドキュメント、コミュニティ。
世界中の2,000以上の組織から信頼されています。
利用可能性は、このページではなく、本番環境のメソッドカタログに基づいています。ウォレットは、ワークフロー内で受け入れ可能になった瞬間にここに表示されます。ローンチ日は保証されません。
近日公開
カタログ内のすべてのウォレットは、公式マーク、対応国、発行機関とともにリストされています。まだ本番環境で稼働しているものはありません。ローンチスイッチはオフになっているため、それぞれ「近日公開」と表示され、スイッチがオンになるまでワークフローで有効にすることはできません。
各国のウォレットが稼働したら、受け入れるウォレットにチェックを入れます。サインインがキャンセルまたは失敗した場合に、ドキュメントキャプチャにフォールバックするか、拒否するかを選択します。コードは不要です。
メソッドカタログから直接
カタログ掲載数
対応国数
eIDAS高
順序制御は一切なし
チェックを入れるだけで設定完了です。ユーザーはあなたが許可したものから選択し、画面上の順序に意味はありません。各ウォレットは、稼働開始までカタログの状態を維持します。
エンドユーザーの画面
MitID · Danish Agency for Digital Government
管理者画面のみ
エンドユーザーが保証ラベル、ソース名、価格を見ることはありません。これら3つはすべてレビュー担当者のみが確認できます。
少なくとも1つのウォレットがある国
国
EUDIウォレットでカバー
対応範囲は国ごとのカタログに準拠します。ここに国旗があるのは、その国でウォレットがリストされていることを意味し、稼働中であることを示すものではありません。
$ 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_wallets",
"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": "wallet", "assurance": "cryptographic" }# Didit digital ID wallets — integrate in 5 minutes
You are adding digital ID wallet sign-in to my_stack. The user signs in with a
government or bank digital identity and the wallet returns signed attributes.
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
Wallet availability is server-driven per country. Never hard-code a wallet 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 gives you, per wallet id: the display name, the countries it
covers, the issuing authority, the level of assurance, the availability state,
and the attributes it returns. As of this prompt every wallet is coming soon:
the launch switch is off in production, so the catalog will not let you accept
one yet. Build against the catalog and re-read it; do not hard-code a date.
## 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). Wallets are its
wallet method, accepted per country under config.methods on that same
feature entry, in the same request. Keys are ISO 3166-1 alpha-3.
{
"workflow_label": "Wallet onboarding",
"features": [
{
"feature": "OCR",
"config": {
"methods": {
"DNK": {
"document": { "enabled": true },
"wallet": {
"enabled": true,
"providers": ["mitid"],
"on_failure": "fallback_to_document"
}
},
"NOR": {
"document": { "enabled": true },
"wallet": {
"enabled": true,
"providers": ["bankid_no", "vipps"],
"on_failure": "fallback_to_document"
}
}
}
}
}
]
}
Response: the workflow uuid — use it as workflow_id in step 4.
Rules that the API enforces:
- providers is an accept-list, not a ranking. Order carries no meaning and
the end user picks
- on_failure is either fallback_to_document or decline. It covers all three
cases: no wallet, cancelled, sign-in failed
- a wallet id the catalog does not mark available for that country is
rejected, and the rejection fails the whole save — including any lookup
configuration next to it. While every wallet is coming soon, keep
wallet.enabled false (or omit the wallet block) so the save succeeds
- unknown wallet ids already saved on a workflow are preserved untouched, so
a config written by a newer console version is never silently dropped
- 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
shows the accepted wallets for the user's country with their brand marks,
hands off to the wallet, and waits for the signed assertion to come back.
## 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"
wallet_provider the catalog wallet id the user signed in with; null
on document and id_lookup entries
wallet_verification provider, provider_name, issuing_authority,
issuing_country, credential_type, level_of_assurance
(low | substantial | high), verified_at,
signature_valid, attributes (what the wallet shared),
portrait when the wallet shares one; null otherwise
fallback_from { method, reason, action } when the session fell
back to document capture or was declined; else null
A wallet entry that succeeds is assurance cryptographic — the highest of the
three. Check wallet_verification.signature_valid before you trust attributes.
Field-by-field reference: https://docs.didit.me/reference/data-models#id-verification
## 7. Billing
- published customer prices in USD per completed wallet verification:
- MitID personal: $0.35; production availability: Coming soon
- BankID Sweden: $0.30; production availability: Coming soon
- BankID Norway High: $0.35; production availability: Coming soon
- Vipps Plus: $0.28; production availability: Coming soon
- Buypass ID: Coming soon; production availability: Coming soon
- itsme: Coming soon; production availability: Coming soon
- iDIN full identification: $0.85; production availability: Coming soon
- Finnish Trust Network: $0.30; production availability: Coming soon
- Personalausweis Profile 2: $0.45; production availability: Coming soon
- Freja eID: Coming soon; production availability: Coming soon
- UAE PASS: Coming soon; production availability: Coming soon
- gov.br: Coming soon; production availability: Coming soon
- OneID: Coming soon; production availability: Coming soon
- GOV.UK Wallet: Coming soon; production availability: Coming soon
- Smart-ID: Coming soon; production availability: Coming soon
- Mobile-ID: Coming soon; production availability: Coming soon
- Bank iD: Coming soon; production availability: Coming soon
- MojeID: Coming soon; production availability: Coming soon
- Diia: Coming soon; production availability: Coming soon
- FranceConnect: Coming soon; production availability: Coming soon
- Auðkenni: Coming soon; production availability: Coming soon
- EUDI Wallet: Coming soon; production availability: Coming soon
- an announced price does not enable a wallet; check the live workflow catalog
- wallet checks are outside the document free tier; other checks are billed separately
- full pricing: https://docs.didit.me/core-technology/id-verification/digital-id-wallets#pricing
- document capture bills its own price when the user falls back
## 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)
- wallet ids come from the catalog verbatim, 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 accepted wallet in sandbox
- assert the id_verifications[] entry for your node has verification_method
wallet and wallet_verification.signature_valid true
- cancel a wallet sign-in and assert your on_failure setting actually fires
- 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
以下の料金は、ウォレット認証が完了するごとに発生するUSDです。記載されたID製品に適用され、その他のワークフローチェックやドキュメントフォールバックは別途請求されます。毎月500件の無料ドキュメントチェックはウォレットには適用されません。料金が発表されていても、ウォレットが既に利用可能であることを意味するものではありません。提供状況は別途表示されます。料金が未発表のものは「近日公開」です。IDウォレットは個人を認証するものであり、暗号資産ウォレットのスクリーニングは別の製品です。
詳細なドキュメントを読む| IDウォレット | USD / 認証完了 | 国・地域 | 本番環境での利用可能状況 |
|---|---|---|---|
| MitID personal | $0.35 |
| 近日公開 |
| BankID Sweden | $0.30 |
| 近日公開 |
| BankID Norway High | $0.35 |
| 近日公開 |
| Vipps Plus | $0.28 |
| 近日公開 |
| Buypass ID | 近日公開 |
| 近日公開 |
| itsme | 近日公開 |
| 近日公開 |
| iDIN full identification | $0.85 |
| 近日公開 |
| Finnish Trust Network | $0.30 |
| 近日公開 |
| Personalausweis Profile 2 | $0.45 |
| 近日公開 |
| Freja eID | 近日公開 |
| 近日公開 |
| UAE PASS | 近日公開 |
| 近日公開 |
| gov.br | 近日公開 |
| 近日公開 |
| OneID | 近日公開 |
| 近日公開 |
| GOV.UK Wallet | 近日公開 |
| 近日公開 |
| Smart-ID | 近日公開 |
| 近日公開 |
| Mobile-ID | 近日公開 |
| 近日公開 |
| Bank iD | 近日公開 |
| 近日公開 |
| MojeID | 近日公開 |
| 近日公開 |
| Diia | 近日公開 |
| 近日公開 |
| FranceConnect | 近日公開 |
| 近日公開 |
| Auðkenni | 近日公開 |
| 近日公開 |
| EUDI Wallet | 近日公開 |
| 近日公開 |
開発、テスト、そして最初のユーザー向け。
25以上のモジュールを公開価格で提供。自動ボリュームディスカウントあり。
大量利用や規制対象プログラム向け。
利用量の増加に応じて割引が自動適用されます。交渉や営業担当とのやり取りは不要です。
Diditは本人確認と不正対策のためのインフラです。私たちが自社でプロダクトを開発していたときに「こんなプラットフォームがあれば」と願ったものを形にしました。オープンで柔軟、そして開発者に優しい設計なので、ブラックボックスとしてではなく、お客様のスタックの一部として機能します。
単一のAPIで、個人の本人確認(KYC、Know Your Customer)、企業の本人確認(KYB、Know Your Business)、暗号資産ウォレットのスクリーニング(KYT、Know Your Transaction)、リアルタイムのトランザクション監視をカバーします。そのスタックは、以下の特長を備えています。
基盤となるフットプリント:48以上の言語に対応する14,000種類以上の書類タイプ、1,000以上のデータソース、そしてすべてのセッションで200以上の不正シグナルを検出します。Diditのインフラは、すべてのセッションから動的に学習し、日々進化しています。
ユーザーは、すでに持っている政府または銀行のデジタルID(デンマークのMitID、スウェーデンとノルウェーのBankID、ベルギーのitsme、UAE PASS、gov.br、EUDI Walletなど)でサインインし、ウォレットがそのユーザーに関する署名付き属性を返します。
Diditは発行者の署名をチェックし、検証済みの属性をセッションに書き込みます。書類の写真も、セルフィーも、入力も不要です。
これはID_VERIFICATION内の1つの方法であり、書類キャプチャや書類不要のルックアップと同様に、国ごとに受け入れられます。
22種類のウォレットが34カ国で利用可能です。カタログには、MitID(デンマーク)、BankID(スウェーデン、ノルウェー)、VippsおよびBuypass ID(ノルウェー)、itsme(ベルギー、ルクセンブルク、オランダ)、iDIN(オランダ)、Finnish Trust Network、Personalausweis(ドイツ)、Freja eID(スウェーデン)、UAE PASS、gov.br(ブラジル)、OneIDおよびGOV.UK Wallet(イギリス)、Smart-IDおよびMobile-ID(バルト諸国)、Bank iDおよびMojeID(チェコ)、Diia(ウクライナ)、FranceConnect、Auðkenni(アイスランド)、そして単独でEUおよびEEAの30カ国をカバーするEUDI Walletが含まれます。
現在、本番環境で稼働しているものはありません。すべてのウォレットは「近日公開」と表示され、ワークフローで有効にすることはできず、提供開始日も未定です。このリストはメソッドカタログによって提供されるため、ウォレットが準備できた時点で利用可能になります。このページの内容は手動で変更されることはありません。
フルフローは通常、エンドツーエンドで30秒未満で完了します。これは市場最速です。従来のプロバイダーでは、同じフローで90秒以上かかることが一般的です。
ウォレットでのサインインは通常、最も短いパスです。ユーザーはウォレットをタップし、リクエストを承認して戻るだけです。バックエンドでは、Diditはp99で2秒未満で結果を返します。
ウォレット発行者は、返される属性に署名し、Diditはセッションに書き込む前にその署名を検証します。signature_validが結果に含まれるため、お客様自身で検証できます。
資格情報は銀行または政府によって発行され、所有者に紐付けられているため、偽造する書類画像も、ディープフェイクする顔もありません。これが、ウォレットが3つの階層の中で最も高い暗号学的保証レベルに達する理由です。
「ウォレットなし」「キャンセル」「サインイン失敗」の3つのケースすべてを1つのスイッチでカバーします。ドキュメントキャプチャにフォールバックするか、セッションを拒否するかを国ごとに設定できます。
結果にはフォールバック元の方法と理由が記録されるため、ウォレットサインインの失敗を見逃すことはありません。
すべてのウォレットは、所有者の氏名と、2つの例外を除き生年月日、そして署名付きアサーション自体を返します。ほとんどのウォレットは、ウォレットが公開する国民識別子(BankIDの場合はスウェーデン個人番号、MitIDの場合はCPRエイリアス、itsmeの場合は国民登録番号、gov.brの場合はCPF)を追加し、一部のウォレットは住所や顔写真を追加します。UAE PASS、GOV.UK Wallet、Diiaは所有者の顔写真を返します。
EUDI Walletは、加盟国が発行した個人識別データ(PID)を返します。ワークフローでオプションの属性のチェックを外すと、セッションに書き込まれることはありません。
ウォレットごとの正確な属性リストはdocs.didit.meで確認できます。
お客様が選択したリージョンで、SOC 2 Type 1およびType 2、ISO 27001、GDPRに準拠し、転送中および保存時に暗号化されます。
ウォレットはリクエストされた属性のみを共有し、オプションの属性はチェックを外すことで一切保存されないようにできます。必須属性は、監査人が必要とする署名付きアサーション参照とともに常に保存されます。
詳細は/security-complianceをご覧ください。
Diditは、フィンテック、銀行、iGaming、暗号資産、マーケットプレイス、ヘルスケア、政府機関といった規制対象業界の2,000社以上で本番稼働しています。
ウォレットサインインは、3つの方法の中で最も強力な証拠である暗号学的な保証レベルに達しており、その保証レベルはすべてのセッションに記録されます。規制当局が特定の国のeIDを指定している場合、そのウォレットを受け入れることが通常、要件を満たす最もクリーンな方法です。
メモは/security-complianceにあります。
数分で、3つの方法があります。
business.didit.meから始めるか、docs.didit.me/integration/integration-promptをご覧ください。