AI agent Anda bisa menjalankan KYC. Dengan satu perintah.
Instal dua belas Agent Skills open-source Didit ke Cursor, Claude Code, Codex, atau OpenCode dengan satu perintah `npx`. Tanyakan ke agent dalam bahasa Inggris biasa. Agent akan menulis kode dan memanggil live API.
Dipercaya oleh 2.000+ organisasi di seluruh dunia.
Kenapa skills, bukan docs
Dokumentasi untuk manusia. Skill untuk agen.
Berikan Cursor tab dokumentasi, dan ia akan mengarang endpoint serta mengubah status enum menjadi huruf kecil.
Berikan Didit skill, dan setiap baris akan mengarah ke API yang sebenarnya, endpoint terkunci,
header terkunci, scaffold handler signed-webhook. Cukup satu perintah `npx`.
Cara kerjanya
Dari instal npx sampai user terverifikasi dalam empat langkah.
Langkah 01
Instal skills-nya
Jalankan `npx skills add didit-protocol/skills` di project Anda. CLI akan mendeteksi Cursor, Claude Code, Codex, atau OpenCode dan menempatkan setiap skill ke folder yang tepat. Instal hanya satu dengan `--skill didit-face-match`.
Langkah 02
Dapatkan API key
Ambil satu dalam 60 detik di [business.didit.me](https://business.didit.me) dan `export DIDIT_API_KEY=…`, atau biarkan agent mendaftar secara terprogram, `POST /programmatic/register/` diikuti dengan `verify-email/`, dan key akan kembali dalam respons. Tidak perlu browser.
Langkah 03
Tanyakan dalam bahasa Inggris biasa
*“Tambahkan Didit KYC ke alur pendaftaran saya.”* *“Saring user ini terhadap daftar AML.”* Agent membaca skill yang relevan, menulis kode, dan menghubungkan handler signed-webhook. Langsung benar di percobaan pertama, tidak perlu bolak-balik tab dokumentasi.
Langkah 04
User memverifikasi
Didit meng-host kamera, pengambilan dokumen, selfie, dan hand-off mobile. Kurang dari 30 detik untuk user. Keputusan dalam waktu kurang dari 2 detik di webhook Anda, ditandatangani dengan `X-Signature-V2` agar Anda bisa mempercayainya.
Apa yang skills berikan kepada Anda
Dua belas skill. Nihil halusinasi. Setiap API Didit.
Setiap skill adalah satu file Markdown yang mengunci endpoint, header, bentuk body, dan status enum. Open source. Versi sesuai dengan API.
Dua belas skill. Satu untuk setiap kapabilitas Didit.
Skill utama untuk akun, sesi, workflow, dan billing (45+ endpoint) ditambah sebelas skill mandiri untuk ID, liveness, face match, face search, usia, AML, email, telepon, bukti alamat, dan validasi database.
didit-liveness-detection99.9% accurate selfie liveness
didit-face-matchCompare two faces, 0–100 score
didit-aml-screening1,300+ sanctions + PEP lists
didit-proof-of-addressOCR + geocoding
didit-database-validationGov databases · 18 countries
+ face-search, age, email, phone, 12 in total.
02 · Instalasi
Satu perintah npx. Beres.
`npx skills add didit-protocol/skills` menginstal kedua belas skill. Tambahkan `--skill didit-face-match` untuk memilih satu. Lebih suka Git? `git clone` dan salin yang kamu butuhkan. Tidak ingin pakai tooling? Cukup letakkan satu file `SKILL.md` ke folder skill agenmu.
Detects Cursor, Claude Code, Codex, OpenCode automatically.
03 · Host
Cursor, Claude Code, Codex, OpenCode.
Skill Markdown yang sama di mana saja. CLI secara otomatis mendeteksi runtime-mu dan menulis ke `.cursor/skills/` atau `.claude/skills/`. Dibangun di atas standar terbuka [agentskills.io](https://agentskills.io), tanpa SDK vendor.
Mengunci endpoint asli, header asli, casing status asli, harga live. Agen berhenti mengarang path dan mengubah enum menjadi huruf kecil. 51 endpoint diuji setiap rilis.
`export DIDIT_API_KEY=…` dan skill siap digunakan. Atau biarkan agen mendaftar sendiri melalui `POST /programmatic/register/` dan dapatkan key tanpa harus keluar dari terminal.
Setiap skill ada di [github.com/didit-protocol/skills](https://github.com/didit-protocol/skills). Audit kodenya, sesuaikan prompt-nya, kirim PR. Skill ini dirilis di hari yang sama dengan endpoint-nya.
Versioned with the API · new endpoint, same-day skill.
Integrasikan
Instal skills-nya. Tanyakan ke agent. Langsung rilis.
Kiri: instalasi. Kanan: cURL yang ditulis agent setelah skill terpasang.
npx skills addInstal
$ npx skills add didit-protocol/skills✓ 12 skill terinstal# or just one$ npx skills add didit-protocol/skills \
--skill didit-face-match# set the api key$ export DIDIT_API_KEY="sk_live_..."
OKSiapCursor, Claude Code, Codex, OpenCode terdeteksi otomatis.
Instal semua 12 Didit Agent Skills dalam satu prompt.
Tempelkan ke Cursor, Claude Code, Codex, atau OpenCode. Agent akan menginstal skill, mengatur environment, membuat kerangka kerja untuk session create + signed-webhook handler, dan mengujinya dengan live API.
didit-integration-prompt.md
You are installing the Didit Agent Skills into this project and wiring the first verification session against the live https://verification.didit.me/v3/ API. After this prompt, the project should pass identity verification — Know Your Customer (KYC), Anti-Money Laundering (AML) screening, document Optical Character Recognition (OCR) — through Didit.
Didit ships twelve open-source Agent Skills at https://github.com/didit-protocol/skills and follows the open standard at https://agentskills.io. The CLI auto-detects whether you are running inside Cursor, Claude Code, Codex, or OpenCode and drops the skills into the right folder.
PRE-REQUISITES
- A Didit API key (DIDIT_API_KEY). Either issued from https://business.didit.me, or self-registered by the agent via POST /programmatic/register/ + POST /programmatic/verify-email/ (no browser needed).
- A workflow_id from the Workflow Builder that bundles ID Verification + Passive Liveness + Face Match + IP Analysis + AML — or just use the didit-kyc-onboarding skill below to create one programmatically.
- A webhook endpoint that verifies the X-Signature-V2 header with HMAC-SHA256 on the raw body bytes (do NOT re-serialise the parsed JSON; the signature will not match).
STEP 1 — Install the skills
Recommended:
npx skills add didit-protocol/skills
This installs all twelve skills. To install only one:
npx skills add didit-protocol/skills --skill didit-face-match
Or git clone the repo and copy what you need:
git clone https://github.com/didit-protocol/skills.git
cp -r skills/didit-kyc-onboarding .claude/skills/
cp -r skills/didit-id-document-verification .claude/skills/
The twelve skills:
- didit-verification-management : the hub. Account, sessions, workflows, billing, blocklist, webhook config. 45+ endpoints
- didit-kyc-onboarding : full KYC recipe (ID + selfie + face match) in one call
- didit-id-document-verification : passports, ID cards, driver's licences. OCR, MRZ, NFC. 4,000+ documents, 220+ countries
- didit-liveness-detection : 99.9%-accurate liveness from a single selfie
- didit-face-match : compare two faces, get a 0–100 score
- didit-face-search : 1:N face search for deduplication and blocklists
- didit-biometric-age-estimation : estimate age from a selfie
- didit-email-verification : email OTP, detects breached / disposable / undeliverable
- didit-phone-verification : phone OTP via SMS, WhatsApp, or Telegram. Catches VoIP
- didit-aml-screening : 1,300+ sanctions, PEP, adverse-media lists. Dual-score risk
- didit-proof-of-address : utility bills, bank statements. OCR + geocoding
- didit-database-validation : government databases across 18 countries
STEP 2 — Set the environment
Every skill reads DIDIT_API_KEY. Session-based skills also expect DIDIT_WORKFLOW_ID. Signed-webhook handlers expect DIDIT_WEBHOOK_SECRET.
export DIDIT_API_KEY="<your api key>"
export DIDIT_WORKFLOW_ID="<your workflow id>" # optional
export DIDIT_WEBHOOK_SECRET="<your secret>" # optional
Programmatic alternative (no browser):
curl -X POST https://apx.didit.me/auth/v2/programmatic/register/ \
-H "Content-Type: application/json" \
-d '{"email": "dev@example.com", "password": "MyStr0ng!Pass"}'
# check the email, get the 6-char code, then:
curl -X POST https://apx.didit.me/auth/v2/programmatic/verify-email/ \
-H "Content-Type: application/json" \
-d '{"email": "dev@example.com", "code": "<code>"}'
# response includes api_key — export it as DIDIT_API_KEY.
STEP 3 — Create a verification session
POST https://verification.didit.me/v3/session/
Headers:
x-api-key: $DIDIT_API_KEY
Content-Type: application/json
Body:
{
"workflow_id": "$DIDIT_WORKFLOW_ID",
"vendor_data": "<your user id, max 256 chars>",
"callback_url": "https://<your-app>/kyc/callback",
"metadata": { "source": "agent-skill" }
}
Response: 201 Created. The hosted session URL is on the `url` field. Redirect the user, or send them the link by email / SMS / WhatsApp. Sub-2-second p99 verdict on completion.
STEP 4 — Read the signed webhook
Didit POSTs to your callback. KYC session statuses are Title Case With Spaces.
Body (excerpted):
{
"session_id": "<uuid>",
"vendor_data": "<your user id>",
"status": "Approved",
"id_verification": { "status": "Approved" },
"liveness": { "status": "Approved" },
"face": { "status": "Approved", "similarity_score": 0.94 },
"aml": { "status": "Approved", "hits": [] }
}
Full enum:
Approved | Declined | In Review | In Progress | Not Started | Abandoned | Expired | Resubmitted | Awaiting User | Not Finished
Verify X-Signature-V2 BEFORE parsing the body — HMAC-SHA256 of the raw bytes with your webhook secret. Re-serialising the parsed body changes whitespace and key order and the signature will not match.
STEP 5 — Read the decision on demand
GET https://verification.didit.me/v3/session/{sessionId}/decision/
Headers:
x-api-key: $DIDIT_API_KEY
Returns the full decision payload — id_verification, liveness, face, ip_analysis, aml. Use this whenever the agent needs to confirm the user's status before allowing an action. Never trust client-supplied "I'm verified" flags.
STEP 6 — Branch on status
Approved → continue
Declined → block, surface decision_reason_code, allow resubmit of the failed step
In Review → wait for the analyst webhook; don't block forever
Resubmitted → user re-took a failed step; new verdict is coming
Awaiting User → user hasn't completed the flow; nudge with a reminder
Expired → create a new session
Abandoned and Declined sessions are NOT billed.
STEP 7 — Optional: ongoing AML monitoring
If AML monitoring is enabled on the workflow ($0.07 per user per year), Didit fires status.updated whenever the user lands on a new sanctions / PEP / adverse-media list. No extra endpoint to call.
WEBHOOK EVENT NAMES
- status.updated : KYC or KYB session status changed
- data.updated : session data corrected after creation
- user.status.updated : User entity changed status (Active, Flagged, Blocked)
- user.data.updated : User entity counters, metadata, or aggregate fields changed
- activity.created : timeline activity recorded
Verify X-Signature-V2 on every payload. The webhook secret is per-environment — sandbox is separate from production.
CONSTRAINTS
- KYC session statuses use Title Case With Spaces (Approved, In Review). Do NOT transform them to UPPER_SNAKE_CASE — that casing is for Know Your Business (KYB) sessions and Transaction Monitoring, not KYC.
- HMAC verification runs against the RAW request body bytes. Never re-serialise the parsed JSON.
- Bundle price is $0.30 (ID + Liveness + Face Match + IP Analysis). AML adds $0.20. 500 verifications free every month, forever.
- Default record retention is unlimited unless you configure it shorter (30 days to 10 years per application).
Read the docs:
- https://docs.didit.me/getting-started/agent-skills
- https://docs.didit.me/sessions-api/create-session
- https://docs.didit.me/sessions-api/retrieve-session
- https://docs.didit.me/integration/webhooks
Skills repo:
- https://github.com/didit-protocol/skills
Start free at https://business.didit.me — sandbox key in 60 seconds, 500 verifications free every month, no credit card.
Dirancang untuk kepatuhan
Buka negara baru dengan satu klik. Kami yang mengerjakan bagian sulitnya.
Kami membuka anak perusahaan lokal, mengamankan lisensi, menjalankan pengujian penetrasi, mendapatkan sertifikasi, dan menyelaraskan dengan setiap regulasi baru. Untuk meluncurkan verifikasi di negara baru, cukup aktifkan tombol. 220+ negara sudah aktif, diaudit dan diuji penetrasi setiap kuartal, satu-satunya penyedia identitas yang secara formal disebut oleh pemerintah negara anggota Uni Eropa lebih aman daripada verifikasi langsung.
Agent Skills open-source. Satu untuk setiap kapabilitas Didit.
0
Endpoint API tercakup. Semua diuji setiap rilis.
<0s
Verifikasi KYC end-to-end per sesi di p99.
0
Verifikasi gratis setiap bulan, di setiap akun.
Tiga tingkatan, satu daftar harga
Mulai gratis. Bayar sesuai penggunaan. Skala ke Enterprise.
500 verifikasi gratis setiap bulan, selamanya. Pay-as-you-go untuk produksi. Kontrak kustom, data residency, dan SLA (Service Level Agreements) untuk Enterprise.
Gratis
Gratis
$0 / bulan. Tidak perlu kartu kredit.
Paket KYC gratis (Verifikasi ID + Passive Liveness + Face Match + Analisis Perangkat & IP), 500 / bulan, setiap bulan
User yang masuk daftar hitam
Deteksi Duplikat
200+ sinyal fraud di setiap sesi
KYC yang dapat digunakan kembali di seluruh jaringan Didit
Platform Manajemen Kasus
Workflow Builder
Dokumentasi publik, sandbox, SDK, server MCP (Model Context Protocol)