Didit
サインアップデモを入手

不透明な価格設定厳格なプラットフォームにうんざりしていませんか?

柔軟性、透明性、管理を求める企業向け検証プラットフォーム、Diditをご体験ください。本当に必要な機能で数分で立ち上げ、無料のコアKYCで最大70%節約できます。

Didit LogovsCompetitor Logo

企業が従来のKYCプロバイダーよりもDiditを選ぶ3つの理由

Diditは、モジュラーな検証フローとオープンAPIにより、貴社独自のニーズに適応します。

当社のプリペイドモデルは、長期的なコミットメントや隠れた料金なしに、完全なコストの可視性を提供します。

セルフサービスでのオンボーディングと即時サンドボックスアクセスにより、数日ではなく数時間でライブ稼働できます。

なぜますます多くの企業がDiditに切り替えているのか?

コストと価格設定

Didit
Competitor

✅ プリペイドクレジット

✅ 最低利用額や有効期限なし

✅ 無料KYCと公開価格設定

❌ 最低月額サブスクリプション

商業的な柔軟性

Didit
Competitor

✅ 従量課金制(Pay-per-use)

✅ モジュラーなセットアップ

✅ ロックインなし

✅ モジュラーオプション

❌ 機能への追加料金

❌ 最低利用コミットメント

統合速度

Didit
Competitor

✅ 即時サンドボックス

✅ セルフサービス・オンボーディング

❌ セットアップはモジュールによって異なる

生体検知と生体認証 (Liveness and Biometrics)

Didit
Competitor

✅ フェイスマッチ 1:1

✅ アクティブ生体検知

✅ パッシブ生体検知

✅ フェイスマッチ 1:1

✅ アクティブ生体検知

✅ パッシブ生体検知

主要な提案

Didit
Competitor

✅ 価格優位性

✅ 柔軟性

✅ 開発者優先のアプローチ

✅ 確立された評判

シームレスな ユーザーエクスペリエンス

ユーザーが見るもの

すべてのインタラクションはリアルタイムです。広範なA/Bテストと推論の最適化により、すべてのミリ秒を最適化しました — 業界最高の完了率と最速の認証時間を提供します。

最も簡単に 統合

Diditをあなたの方法で統合

Diditをノーコードまたは単一のAPIコールで使用します。数分でライブに移行。

ノーコード

事前に構築された認証リンクを使用して、完全なKYCフローを即座に実行します — エンジニアリング作業は不要です。

リンクを共有するだけで、Webhooksまたはコンソールで結果を受け取ることができます。

キーポイント

  • 開発はゼロ
  • 事前構築済み、モバイル最適化されたフロー
  • コンソールで制御
  • リアルタイムの決定 + Webhooks
ドキュメントを見る
Didit コンソール

BUILT FOR AI AGENTS

Integrate with just one prompt

The only identity platform your AI coding agent can fully integrate — credentials, workflows, webhooks, and production code — without opening a browser.

Claude CodeClaude Code
CursorCursor
GitHub CopilotGitHub Copilot
DevinDevin
OpenHandsOpenHands

One prompt. Full integration.

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

  • Full API reference with every endpoint
  • Programmatic registration — no browser needed
  • All 5 SDK install commands included
  • 12 standalone APIs for granular control
View documentation
didit-integration.md
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.

1. 現在プロバイダーで利用しているサービスを選択してください

$
$

競合他社比較

世界で最もスマートな企業がDiditに切り替えている理由

時代遅れで高価で不透明なIDVプロバイダーにうんざりしていませんか?Diditは、AIネイティブで開発者優先のプラットフォームによって、より多くの機能、より公正な料金、および即時アクセスを提供します。Diditがレガシーベンダーと機能およびコストの両方でどのように比較されるかを確認してください。

didit
veriff
ID本人確認
Yes
Yes
NFC本人確認
Yes
Yes
パッシブ生体認証
Yes
Yes
アクティブ生体認証
Yes
Yes
再利用可能なKYC
Yes
No
顔照合 1:1
Yes
Yes
AMLスクリーニング
Yes
Yes
AML継続的モニタリング
Yes
Yes
住所証明
Yes
Yes
年齢推定
Yes
Yes
電話番号確認
Yes
No
IP分析
Yes
Yes
ホワイトレーベル
Yes
Yes
ブロックリスト&重複
Yes
Yes
データベース検証
Yes
Maybe
データ保持
Unlimited
90d
即時サンドボックスアクセス
Yes
Maybe
パブリックAPI
Yes
No
公開料金
Yes
Maybe

料金比較(2025年8月17日)

didit
sumsub
年間コミット
いいえ
はい
月額最低料金
$0
$149
フロー単価
ID + 生存証明 + 顔照合
500回無料/月
その後$0.30²
$1.35
AML + 継続的モニタリング
$0.27²
$0.57
電話番号検証
$0.10²
$0.28
住所証明(PoA)
$0.20²
$1.35

¹ 推定、当該サービスの公式料金は公開されていません。 ² ボリュームディスカウントが利用可能です。上記のROI計算機で節約額を計算してください。

認証

エンタープライズ信頼の認定

当社のプラットフォームは、情報セキュリティ、データプライバシー、および生体認証の精度に関する最高の国際基準を満たしています。

translation_v21.securityCompliance.certifications.items.gdpr.title

GDPR準拠

EU データ保護完全準拠

ISO 27001

ISO 27001

情報セキュリティ管理

translation_v21.securityCompliance.certifications.items.ibeta.title

iBeta Level 1

PAD(ライブネス + 顔照合)

世界中で信頼されています

お客様の声

認証ニーズでDiditを信頼している何千もの企業に参加しましょう

Logo

Didit's NFC + active biometrics technology blocks the most advanced fraud scenarios, offering a level of security equivalent to or superior to in-person verification.

Spanish Financial Sandbox

CNMV, SEPBLAC & Spanish Treasury — Conclusions Report

Logo

Diditは非常に価値のあるパートナーであり、安定した高度に適応可能なソリューションを提供しています。

Vuk Adžić

Crnogorski TelekomのEビジネス部門長

Logo

Diditは、簡単な実装と異なる市場への適応性を備えた堅牢な技術を提供してくれました。

Fernando Pinto

TucanPayのCEOおよび共同創設者

Logo

Diditのおかげで、手動プロセスを削減し、データ抽出の精度を向上させることができました。

Diana Garcia

Shiplyの信頼と安全性担当役員

Logo

Diditの統合により、検証時間とコストが削減され、他のプロジェクトのためのリソースが解放されました。

Guillem Medina

GBTC FinanceのCOO

Logo

DiditはKYCコストを削除し、高い検証基準と詐欺の少ない状態でより速くスケールアップできるようにしました。

Paul Martin

Bondexのマーケティングおよび成長担当副社長

Logo

Diditの安全でユーザーフレンドリーな検証は、顧客の信頼を高め、プロセスを最適化します。

Cristofer Montenegro

AdelantosのCEOエグゼクティブアシスタント

Logo

Diditは、交渉や顧客の時間を遅らせることなく、正確で安全なデジタルオンボーディングを保証します。

Ernesto Betancourth

CrediDemoのリスクマネージャー

FAQ

切り替えについて。

プロバイダーの切り替えが重要な決定であることは理解しています。Diditへの移行に成功した企業から寄せられた最も一般的な質問にお答えしました。

簡単に言えば、当社には優れた製品と価値提案があります。レガシープロバイダーが時代遅れのモデルで運営されている一方で、Diditは現代のデジタル経済のために構築されました。その違いは、次の4つの主要な柱で明らかです。手頃な価格: 当社の無料コアKYCと成功ごとの支払いモデルにより、最大70%節約できます。柔軟性: 当社のモジュラープラットフォームでは、必要なワークフローをアラカルトで正確に構築できます。使いやすさ: ノーコードビルダーまたは開発者優先APIで数分で起動できます。オープン性: 当社は、すべての人に公開料金、即時サンドボックス、および包括的なドキュメントを提供します。