Skip to main content
Didit Raih $7,5 Juta untuk Membangun Infrastruktur Identitas dan Fraud
Didit
MiCA · Kepatuhan kripto

Onboard pengguna kripto. Tetap patuh MiCA.

Verifikasi pengguna, saring wallet, arsipkan bukti, dalam satu panggilan. $0.33 per pemeriksaan. 500 gratis setiap bulan. Kedalaman verifikasi yang diakui UE.

Didukung oleh
Y CombinatorRobinhood Ventures
GBTC Finance
Bondex
Crnogorski Telekom
UCSF Neuroscape
Shiply
Adelantos

Dipercaya oleh 2.000+ organisasi di seluruh dunia.

Ilustrasi cinematic dark abstract compliance-stack, empat panel kaca transparan mengambang yang ditumpuk dalam perspektif 3D di atas latar belakang hitam pekat, dihubungkan oleh garis Didit Blue yang bercahaya dan dibingkai oleh empat braket pemindai yang bersinar. Setiap panel memiliki motif abstrak putih pucat kecil (cincin 12 titik, garis pindai, baris titik, lingkaran).

Apa yang MiCA tuntut

Verifikasi pengguna. Saring wallet. Simpan buktinya.

Setiap platform kripto di Uni Eropa harus melakukan ketiga hal ini, untuk setiap pelanggan, dalam skala besar. Didit menyediakannya dalam satu alur kerja dengan biaya $0.33 per pemeriksaan, dengan 500 gratis setiap bulan.

Cara kerjanya

Dari pendaftaran hingga pengguna terverifikasi dalam empat langkah.

  1. Langkah 01

    Buat alur kerja

    Pilih pemeriksaan yang Anda inginkan, ID, liveness, face match, sanksi, alamat, usia, telepon, email, pertanyaan kustom. Seret ke dalam alur di dashboard, atau kirim alur yang sama ke API kami. Buat cabang berdasarkan kondisi, jalankan A/B test, tanpa perlu coding.

  2. Langkah 02

    Integrasikan

    Sematkan secara native dengan SDK Web, iOS, Android, React Native, atau Flutter kami. Arahkan ke halaman yang di-host. Atau cukup kirim tautan kepada pengguna Anda, melalui email, SMS, WhatsApp, di mana saja. Pilih yang sesuai dengan stack Anda.

  3. Langkah 03

    Pengguna melewati alur

    Didit mengelola kamera, isyarat pencahayaan, hand-off seluler, dan aksesibilitas. Saat pengguna dalam alur, kami menilai 200+ sinyal penipuan secara real-time dan memverifikasi setiap bidang terhadap sumber data otoritatif. Hasil dalam waktu kurang dari dua detik.

  4. Langkah 04

    Anda menerima hasilnya

    Webhook yang ditandatangani secara real-time menjaga database Anda tetap sinkron saat pengguna disetujui, ditolak, atau dikirim untuk ditinjau. Lakukan polling API sesuai permintaan. Atau buka konsol untuk memeriksa setiap sesi, setiap sinyal, dan mengelola kasus sesuai keinginan Anda.

Dibuat untuk kepatuhan · Harga seperti infrastruktur

Enam pemeriksaan. Satu bundle. $0.33 per pengguna.

Onboarding MiCA bukan hanya satu pemeriksaan, ini adalah resep. Aktifkan setiap modul per alur kerja, atau hubungkan langsung.
01 · Bundle KYC

Lima cek, satu panggilan.

ID, liveness, face match, perangkat + IP, AML, dibundel seharga $0.33 per pengguna. Bersertifikat anti-spoof iBeta Level 1, hasil kurang dari dua detik.
Modul Verifikasi ID
02 · Screening AML

Saring setiap pengguna dengan 1.300+ daftar.

Sanksi, PEP, media yang merugikan, diperbarui setiap hari, dalam 14 bahasa. Hasil yang cocok akan otomatis membuka kasus. Siap audit MiCA Pasal 60.
Modul Screening AML
03 · Screening Wallet

Skor setiap deposit sebelum dana masuk.

Mendeteksi wallet yang disanksi, mixer, dana curian. $0.15 per pemeriksaan, atau $0.02 dengan kunci penyedia Anda sendiri. EVM, Bitcoin, TRON, Solana.
Modul Screening Wallet
04 · Pemantauan berkelanjutan

Saring ulang setiap pengguna, setiap hari.

Ketika daftar sanksi dan PEP diperbarui, pengguna yang disetujui akan disaring ulang secara otomatis. Hasil baru akan membuka kasus dengan bukti asli yang dapat diakses dengan satu klik. $0.07 per pengguna per tahun.
Gambaran umum AML berkelanjutan
05 · Atesasi Uni Eropa

Satu-satunya platform KYC yang diakui oleh pemerintah Uni Eropa.

Kementerian Keuangan Spanyol, Banco de España, dan SEPBLAC secara bersama-sama telah menyatakan Didit lebih aman daripada verifikasi langsung. Unduh laporan dan ajukan bersama paket MiCA Pasal 16 Anda.
Keamanan & Kepatuhan
06 · Dibuat untuk setiap platform kripto

Alur kerja yang sama, untuk setiap arketipe.

Bursa, on-ramp, wallet kustodian, platform tokenisasi, lembaga pembayaran, semuanya menjalankan resep MiCA yang sama. Satu kontrak, satu faktur, satu paket audit.
Alur kerja industri kripto
Integrasikan

Satu panggilan. Satu webhook. Pemantauan di atasnya.

Buka sesi dengan satu panggilan. Baca putusan yang ditandatangani dari webhook. Daftarkan pengguna yang disetujui untuk pemantauan.
POST /v3/session/MiCA
$ curl -X POST https://verification.didit.me/v3/session/ \
  -H "x-api-key: $DIDIT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "workflow_id": "wf_mica_user_verification",
    "vendor_data": "user-42",
    "metadata": { "purpose": "mica_onboarding" }
  }'
201Dibuat{ "session_url": "verify.didit.me/..." }
Blokir deposit sampai webhook yang ditandatangani menunjukkan status: Approved.dokumen →
POST /webhooks/diditPutusan
// X-Signature-V2 verified upstream
if (payload.status === "Disetujui") {
  unlockDeposits(payload.vendor_data);
  enrollOngoingAml(payload.id_verification);
} else if (payload.status === "Ditolak") {
  logHits(payload.aml.hits);
  blockAndReview(payload.vendor_data);
}
200Okestatus Disetujui · Ditolak · Dalam Peninjauan
Verifikasi X-Signature-V2 sebelum membaca payload.dokumen →
Integrasi siap agen

Deploy onboarding MiCA dalam satu prompt.

Tempelkan ke Claude Code, Cursor, Codex, Devin, Aider, atau Replit Agent. Isi stack Anda. Agent akan membangun workflow, membatasi deposit, mendaftarkan monitoring, dan menyiapkan pre-check wallet.
didit-integration-prompt.md
You are integrating Didit's MiCA-aligned crypto user-verification workflow. MiCA is the EU's crypto rulebook; a regulated Crypto-Asset Service Provider (CASP) owes three things on every new customer:

  1. Customer Due Diligence (CDD) — verify identity, screen for sanctions, file the evidence.
  2. Ongoing monitoring — re-screen approved users as watchlists update.
  3. Wallet screening for any crypto outflow — score the destination address before the transfer.

Didit ships all three on one workflow:
  - KYC bundle at $0.33 per user (Sessions API)
  - Continuous AML monitoring at $0.07 per user per year (automatic on any session with AML enabled)
  - Wallet screening at $0.17 per crypto transaction managed, or $0.04 BYOK (Transactions API)
  - First 500 verifications free every month, forever

PRE-REQUISITES
  - Production API key from https://business.didit.me (sandbox key in 60s, no card).
  - Webhook endpoint with HMAC SHA-256 verification using the X-Signature-V2 header and your webhook secret.
  - A workflow_id from the Workflow Builder bundling ID Verification + Passive Liveness + Face Match 1:1 + Device & IP Analysis + AML Screening.
  - Transaction Monitoring enabled in the Business Console (Transactions > Settings) with crypto screening on, if you handle crypto outflows.

STEP 1 — Verify the user with the Sessions API

  POST https://verification.didit.me/v3/session/
  Headers:
    x-api-key: <your api key>
    Content-Type: application/json
  Body:
    {
      "workflow_id": "<wf id with KYC + AML modules>",
      "vendor_data": "<your user id>",
      "callback": "https://<your-app>/casp/kyc/callback",
      "metadata": {
        "purpose": "mica_onboarding",
        "casp_reference": "<your internal reference>"
      }
    }

  Response: 201 Created with a hosted-flow URL. Redirect the user. Sub-2-second median verdict.

STEP 2 — Read the signed webhook on KYC completion

  Didit POSTs to your callback. 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 },
      "ip_analysis": { "status": "Approved" },
      "aml": { "status": "Approved", "hits": [] }
    }

  Status enum (exact case): Approved | Declined | In Review | Resubmitted | Expired | Not Finished | Kyc Expired | Abandoned.

  Verify the X-Signature-V2 header BEFORE reading the body — HMAC SHA-256 of the raw bytes with your webhook secret.

STEP 3 — Continuous AML monitoring is automatic

  Every approved user is re-screened daily against the same 1,300+ sanctions, PEP, and adverse-media lists used at onboarding. There is NO separate endpoint to call.

  When a previously-clean user crosses a threshold, the session status updates to "In Review" or "Declined" and your webhook fires the same payload shape as the original onboarding event with the new AML hits. A case opens automatically in the Business Console.

STEP 4 — Wallet screening on crypto outflows (Transactions API)

  Required only if you transfer crypto on behalf of the user. Run BEFORE the crypto leaves.

  POST https://verification.didit.me/v3/transactions/
  Headers:
    x-api-key: <your api key>
    Content-Type: application/json
  Body (required fields verified live):
    {
      "transaction_id": "<your internal reference>",
      "transaction_category": "finance",
      "include_crypto_screening": true,
      "transaction_details": {
        "direction": "OUTBOUND",
        "amount": "0.25",
        "currency": "ETH",
        "currency_kind": "crypto",
        "action_type": "withdrawal"
      },
      "subject": {
        "entity_type": "individual",
        "vendor_data": "<your user id>",
        "full_name": "<user full name>"
      },
      "counterparty": {
        "entity_type": "unhosted_wallet",
        "full_name": "<destination wallet label>",
        "payment_method": {
          "method_type": "crypto_wallet",
          "account_id": "<destination wallet address>"
        }
      }
    }

  REQUIRED fields the API rejects if missing:
    - subject.vendor_data + subject.full_name
    - counterparty.full_name
    - transaction_details.direction + currency + currency_kind + amount
    - For crypto: wallet address on counterparty.payment_method.account_id (OUTBOUND) or subject.payment_method.account_id (INBOUND post-transfer)

  Wallet screening runs server-side when currency_kind = "crypto" and there is a wallet address in the right participant. No separate endpoint.

  Transaction status enum (exact case, UPPER_SNAKE_CASE): APPROVED | IN_REVIEW | DECLINED | AWAITING_USER.
  When a transaction enters AWAITING_USER, Didit creates a linked remediation session automatically and returns a verification URL on the response.

  Branch logic:
    APPROVED       → ship the crypto.
    IN_REVIEW      → hold, route to analyst queue.
    DECLINED       → block, refund, log.
    AWAITING_USER  → redirect the user to the remediation session URL.

WEBHOOK EVENT NAMES
  - Sessions: status changes flow through the standard session webhook.
  - Transactions: transaction.created · transaction.updated · transaction.status.changed · transaction.alert.generated.

  Verify X-Signature-V2 on every payload.

EVIDENCE + RECORD RETENTION
  Every approved user comes with a signed evidence pack (document, biometric match, AML hits, device + IP) stored in the EU. Default retention 5 years post-relationship; configurable per workflow.

  Didit holds the only formal EU-government attestation for a KYC platform — issued jointly by Spain's Tesoro, Banco de España, and SEPBLAC. The report files directly into the MiCA evidence pack.

CONSTRAINTS
  - Session statuses use Title Case With Spaces (Approved, In Review). Transaction statuses use UPPER_SNAKE_CASE (APPROVED, IN_REVIEW). Don't mix them in the same code path.
  - Default record retention is 5 years post-relationship; extend per your supervisor's guidance.
  - 200+ fraud signals are evaluated on every KYC session at no extra cost — surface the score via the session decision payload.

Read the docs:
  - https://docs.didit.me/sessions-api/create-session
  - https://docs.didit.me/core-technology/aml-screening/overview
  - https://docs.didit.me/transaction-monitoring/aml-screening
  - https://docs.didit.me/integration/webhooks

Start free at https://business.didit.me — sandbox key in 60 seconds, 500 verifications free every month, no credit card.
Butuh konteks lebih? Lihat dokumentasi modul lengkapnya.docs.didit.me →
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.
Baca dossier keamanan & kepatuhan
Sandbox keuangan UE
Tesoro · SEPBLAC · BdE
ISO/IEC 27001
Keamanan informasi · 2026
SOC 2 · Type I
AICPA · 2026
iBeta Level 1 PAD
NIST / NIAP · 2026
GDPR
EU 2016/679
DORA
EU 2022/2554
MiCA
EU 2023/1114
AMLD6 · eIDAS 2.0
Selaras dengan UE secara desain

Angka pembuktian

Angka pembuktian
  • EU-attested
    Satu-satunya platform KYC yang diakui oleh pemerintah Uni Eropa, Kementerian Keuangan Spanyol, Banco de España, dan SEPBLAC.
  • 0+
    Sanksi, Politically Exposed Persons (PEP), dan daftar media negatif disaring untuk setiap pengguna.
  • <0s
    Hasil end-to-end per sesi, di Android entry-level.
  • 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)
  • Dukungan komunitas
Paling populer
Bayar sesuai pemakaian

Berbasis Pemakaian

Bayar hanya untuk yang kamu pakai. 25+ modul. Harga per modul transparan, tanpa biaya minimum bulanan.

  • Full KYC seharga $0.33 (ID + Biometrik + IP / Perangkat)
  • 10.000+ dataset AML, sanksi, PEP, media yang merugikan
  • 1.000+ sumber data pemerintah untuk Database Validation
  • Transaction Monitoring seharga $0.02 per transaksi
  • Live KYB seharga $2.00 per bisnis
  • Wallet Screening seharga $0.15 per pemeriksaan
  • Alur verifikasi whitelabel, brand kamu, infrastruktur kami
Enterprise

Enterprise

MSA & SLA kustom. Untuk volume besar dan program yang diatur.

  • Kontrak tahunan
  • MSA, DPA, dan SLA kustom
  • Saluran Slack dan WhatsApp khusus
  • Peninjau manual sesuai permintaan
  • Ketentuan reseller dan white-label
  • Fitur eksklusif dan integrasi partner
  • CSM khusus, tinjauan keamanan, dukungan kepatuhan

Mulai gratis → bayar hanya saat pemeriksaan berjalan → buka Enterprise untuk kontrak kustom, SLA, atau data residency.

FAQ

Pertanyaan umum

What is Didit?

Didit is infrastructure for identity and fraud, the platform we wished existed when we were building products ourselves: open, flexible, and developer-friendly, so it works as a real part of your stack instead of a black box you integrate around.

One API covers verifying people (KYC, know your customer), verifying businesses (KYB, know your business), screening crypto wallets (KYT, know your transaction), and monitoring transactions in real time, on a stack built to be:

  • Fast, sub-2-second p99 on every session
  • Reliable, in production with 1,500+ companies across 220+ countries
  • Secure, SOC 2 Type 1, ISO 27001, GDPR-native, and formally attested by Spain's financial regulator as safer than verifying someone in person

The footprint underneath: 14,000+ document types in 48+ languages, 1,000+ data sources, and 200+ fraud signals on every session. The Didit infrastructure dynamically learns from every session and gets better every day.

What is MiCA, in one sentence?

MiCA, Regulation (EU) 2023/1114, the Markets in Crypto-Assets Regulation, is the European Union's first uniform rulebook for crypto-asset issuance, public offerings, admission to trading, and the services around them. It replaces 27 different national Virtual Asset Service Provider (VASP) regimes with one harmonised licence valid across the entire EU single market.

Supervision is layered:

  • Each member state's National Competent Authority (NCA) issues the licence and runs day-to-day supervision
  • The European Securities and Markets Authority (ESMA) publishes Level 2/3 standards and supervises significant CASPs
  • The European Banking Authority (EBA) supervises significant stablecoin issuers and writes Anti-Money Laundering (AML) guidance

Didit ships every piece a Crypto-Asset Service Provider (CASP) needs to satisfy MiCA's customer-due-diligence, ongoing-monitoring, and evidence-retention duties, one workflow, $0.33 per user, 500 verifications free every month, integrate in 5 minutes.

Which crypto businesses are in scope?

Any business offering one of the ten CASP services defined in Article 3(1)(15) to EU clients:

  • Custody and administration of crypto-assets on behalf of clients
  • Operation of a trading platform for crypto-assets
  • Exchange of crypto-assets for funds (on/off-ramp)
  • Exchange of crypto-assets for other crypto-assets
  • Execution of orders for crypto-assets on behalf of clients
  • Placing of crypto-assets
  • Reception and transmission of orders
  • Advice on crypto-assets
  • Portfolio management of crypto-assets
  • Transfer services for crypto-assets on behalf of clients

In practice that captures centralised exchanges, on/off-ramps, custodial wallets, brokers, OTC desks, advisory services, payment institutions handling crypto, and tokenisation platforms. Truly decentralised protocols with no identifiable operator and pure peer-to-peer transfers sit outside the regime.

Didit customers across the MiCA perimeter: AhoraCrypto (Bank-of-Spain-registered on/off-ramp), GBTC Finance (exchange + 20+ physical stores), TucanPay (EU↔LatAm payments), Agape Smart Money (international money transfers in 30+ countries). Same workflow, same /v3/ API, different deposit + trade flows downstream.

How fast is the verification for my end user?

The full flow normally takes under 30 seconds end-to-end, pick up the ID, snap the document, snap the selfie, done. That is the fastest in the market. Legacy KYC providers usually take more than 90 seconds for the same flow.

On the back end, Didit returns the result in under two seconds at p99, measured from the moment the user finishes the selfie to the moment your webhook fires. Mobile capture is tuned for slow phones and slow networks: progressive image compression, lazy software development kit load, and a one-tap hand-off from desktop to phone via QR code if the user starts on web.

How is MiCA different from 6AMLD and the EU Travel Rule?

Three regulations, three jobs, all of them apply to a CASP at once:

  • MiCA, Regulation (EU) 2023/1114. Conduct regulation. Licenses the crypto business; sets capital, governance, custody, market-abuse, and disclosure duties.
  • The EU AML package, Directive (EU) 2018/1673 (AMLD6) + the new Anti-Money-Laundering Regulation (EU) 2024/1624 + the new AMLA Regulation (EU) 2024/1620. Anti-money-laundering / counter-terrorist-financing. Sets Customer Due Diligence (CDD), Politically Exposed Persons (PEP) checks, sanctions screening, Suspicious Activity Reports (SARs), ongoing monitoring.
  • The TFR, Regulation (EU) 2023/1113. The Travel Rule for crypto. The EU's implementation of Financial Action Task Force (FATF) Recommendation 16, originator + beneficiary data must travel with every crypto transfer.

Didit covers all three in one workflow:

  • Conduct (MiCA): evidence pack, Article 60 CDD, EU-resident storage, attestation
  • AML / 6AMLD: AML Screening against 1,300+ sanctions / PEP / adverse-media lists, Ongoing Monitoring at $0.07 per user per year, signed webhooks for new hits
  • Travel Rule (TFR): IVMS-101 payloads, TRP / Sumsub TR / Notabene / Veriscope interop

One contract, one invoice, one audit pack.

What happens if a user fails, abandons, or expires?

Every session lands on one of seven clear statuses, so your code always knows what to do:

  • Approved, every check passed. Move the user forward.
  • Declined, one or more checks failed. You can allow the user to resubmit the specific failed step (for example, re-take the selfie) without re-running the whole flow.
  • In Review, flagged for compliance review. Open the case in the console, see every signal, decide approve or decline.
  • In Progress, user is mid-flow.
  • Not Started, link sent, user has not opened it yet. Send a reminder if it sits too long.
  • Abandoned, user opened the link but did not finish in time. Re-engage or expire.
  • Expired, the session link aged out. Create a new session.

A signed webhook fires on every status change, so your database always stays in sync. Abandoned and declined sessions are free.

Where does my customer data live and how is it protected?

Production data is processed and stored in the European Union by default, on Amazon Web Services. Enterprise contracts can request alternative regions for jurisdictions whose regulators require it.

Encryption everywhere. AES-256 at rest across every database, object store, and backup. Transport Layer Security 1.3 in transit on every API call, webhook, and Business Console session. Biometric data is encrypted under a separate Customer Master Key.

Retention is yours to control. Default retention is indefinite (unlimited) unless you configure shorter, between 30 days and 10 years per application, and you can delete any individual session at any time from the dashboard or the API.

Certifications: SOC 2 Type 1 (Type 2 audit in progress), ISO/IEC 27001:2022, iBeta Level 1 PAD, and a public attestation from Spain''s Tesoro / SEPBLAC / CNMV that Didit''s remote identity verification is safer than verifying someone in person. Full report at /security-compliance.

Is Didit compliant for my industry?

Didit ships compliant by default for the regulators that matter to identity infrastructure:

  • GDPR + UK GDPR, controller / processor split, full Data Processing Agreement published, lead supervisory authority named (Spain''s AEPD).
  • AMLD6 + EU AML Single Rulebook, 1,300+ sanctions, politically exposed person, and adverse-media lists screened in real time.
  • eIDAS 2.0, EU Digital Identity Wallet aligned; reusable-identity ready.
  • MiCA (Markets in Crypto-Assets), ready for crypto on-ramps, exchanges, and custodians.
  • DORA, Digital Operational Resilience Act, EU financial-services operational resilience.
  • BIPA, CUBI, Washington HB 1493, CCPA / CPRA, US biometric privacy (Illinois, Texas, Washington) and California consumer privacy.
  • UK Online Safety Act, age-gating and child-safety obligations.
  • FATF Travel Rule, originator and beneficiary data on crypto transfers, IVMS-101 interoperable.

Detailed memo, every certificate, every regulator letter: /security-compliance.

How fast can I integrate and start verifying users?
  • 60 seconds to a sandbox account at business.didit.me, no credit card.
  • 5 minutes to a working verification through Claude Code, Cursor, or any coding agent via our Model Context Protocol (MCP) server.
  • A weekend to a production-ready integration with signed-webhook verification, retries, and a remediation flow when a user is declined.

Three integration paths, pick whichever fits your stack:

  • Embed natively with our Web, iOS, Android, React Native, or Flutter SDK.
  • Redirect the user to the hosted verification page, zero SDK.
  • Send a link by email, SMS, WhatsApp, or any channel, zero front-end work.

Same dashboard, same billing, same pay-per-success price for all three. Step-by-step guide at docs.didit.me/integration/integration-prompt.

Does it screen incoming deposit wallets too?

Yes. Wallet Screening (Know-Your-Transaction) scores every deposit address before you credit the user.

Returns:

  • 0-100 risk score + categorical labels: sanctioned, mixer, exchange-high-risk, stolen funds, darknet, ransomware, phishing, scam
  • Counterparty cluster + attribution to the upstream entity where known
  • Daily delta refresh against the underlying provider feeds

Pricing:

  • $0.15 per check on the managed flow (Didit handles the underlying on-chain-analytics contract for you)
  • $0.02 per check when you Bring Your Own Key (BYOK) from your existing on-chain-analytics provider, Didit becomes the routing + normalisation layer over the API key you already paid for

Chain coverage: Ethereum + EVM-compatible chains (Polygon, BNB, Arbitrum, Optimism, Base), Bitcoin, TRON, Solana, plus the major Layer 2s. New chains added as provider coverage expands.

Hits route into the same Case Management surface as AML hits, one queue, one reviewer workflow, one audit trail.

What records do I need to keep, and for how long?

MiCA Article 67-68, CASPs must retain records of services, activities, orders, and transactions for at least 5 years (extendable to 7 on competent-authority request).

The EU AML package, CDD records must be retained for 5 years after the end of the business relationship, with member-state discretion to extend up to 10 years.

The TFR, Travel Rule data must travel with the transfer and be retained per the same AML retention timeline.

Didit's retention model:

  • All evidence stored in the European Union, regulated EU data centres, no cross-border transfer for EU customers
  • Signed + timestamped, every payload carries an HMAC signature so chain-of-custody is provable for an examiner
  • Retained indefinitely while your subscription is active, no per-record retention bill, no expiry surprises
  • Configurable per workflow if your NCA mandates a specific duration (e.g. extend to 10 years for high-risk client categories)
  • Export anytime via GET /v3/session/... or bulk ZIP from the Console

When a user closes their account, evidence retention starts ticking from the off-boarding date, same model regulators expect from traditional financial institutions.

Is there an attestation I can show our MiCA examiner?

Yes, Didit is the only KYC provider with a formal EU member-state government attestation.

The Spanish Financial Sandbox, run jointly by:

  • Tesoro (the Spanish Treasury)
  • Banco de España (the Spanish central bank)
  • SEPBLAC (Servicio Ejecutivo de la Comisión de Prevención del Blanqueo de Capitales, Spain's Financial Intelligence Unit)

…jointly attested Didit's NFC + active-biometric verification as safer than in-person verification. The report is downloadable from your Business Console and slots directly into your MiCA Article 16 (CASP authorisation) and Article 60 (CASP conduct) packs.

Additional third-party certifications kept current:

  • ISO/IEC 27001, Information Security Management System
  • SOC 2 Type 1, service-organisation controls
  • iBeta Level 1 PAD, Presentation Attack Detection (the standard for face-liveness anti-spoof)
  • finReg360 EBA memo, independent legal review against the EBA's MiCA guidelines

Every certificate is reachable from /security-compliance and downloadable on demand.

Infrastruktur untuk identitas dan fraud.

Satu API untuk KYC, KYB, Transaction Monitoring, dan Wallet Screening. Integrasi dalam 5 menit.

Minta AI untuk merangkum halaman ini