Skip to main content
Didit Raises $7.5M to Build the Infrastructure for Identity and Fraud
Didit
Digital ID wallets

Let people sign in with
the ID they already have.

MitID, BankID, itsme, UAE PASS, gov.br, the EUDI Wallet. The user signs in with their government or bank digital identity, and the wallet returns signed, verified attributes. Coming soon, with every wallet and country already in the catalog.

Backed by
Y CombinatorRobinhood Ventures
Firecrawl
Slash
Crnogorski Telekom
UCSF Neuroscape
Bit2Me

Trusted by 2,000+ organizations worldwide.

  • MitIDDenmark · Danish Agency for Digital GovernmentDenmarkSoon
  • BankIDSweden · Finansiell ID-Teknik / bank consortiumSwedenSoon
  • BankIDNorway · BankID BankAxept ASNorwaySoon
  • VippsNorway · Vipps MobilePay / BankID NONorwaySoon
  • Buypass IDNorway · Buypass ASNorwaySoon
  • itsmeBelgium, Luxembourg, Netherlands · Belgian Mobile IDBelgiumLuxembourgNetherlandsSoon
  • iDINNetherlands · Dutch banks (Currence iDIN)NetherlandsSoon
  • Finnish Trust NetworkFinland · Finnish banks and mobile operators (FTN)FinlandSoon
  • PersonalausweisGermany · Bundesministerium des Innern (eID)GermanySoon
  • Freja eIDSweden · Freja eID GroupSwedenSoon
  • UAE PASSUnited Arab Emirates · UAE Digital Government AuthorityUnited Arab EmiratesSoon
  • gov.brBrazil · Governo Federal do BrasilBrazilSoon
  • OneIDUnited Kingdom · OneID (UK bank-verified identity)United KingdomSoon
  • GOV.UK WalletUnited Kingdom · UK Government Digital ServiceUnited KingdomSoon
  • Smart-IDEstonia, Latvia, Lithuania, Belgium · SK ID SolutionsEstoniaLatviaLithuaniaBelgiumSoon
  • Mobile-IDEstonia, Latvia, Lithuania · SK ID Solutions with the national mobile operatorsEstoniaLatviaLithuaniaSoon
  • Bank iDCzechia · Bankovní identita, a.s.CzechiaSoon
  • MojeIDCzechia · CZ.NICCzechiaSoon
  • DiiaUkraine · Ministry of Digital Transformation of UkraineUkraineSoon
  • FranceConnectFrance · DINUM (French state)FranceSoon
  • AuðkenniIceland · Auðkenni (Icelandic electronic ID)IcelandSoon
  • EUDI Wallet30 EU and EEA countries · The user's own member state; the issuer differs per countryAustriaBelgiumBulgariaCroatia+26Soon

Availability comes from the production methods catalog, not from this page. A wallet lights up here the moment it can be accepted inside your workflow. No launch date is promised.

Coming soon

Twenty-two wallets.
Thirty-four countries.

Every wallet in the catalog is listed with its official mark, the countries it operates in and its issuing authority. None is live in production yet: the launch switch is off, so each one reads coming soon and cannot be enabled on a workflow until it flips.

How it works

From a wallet sign-in to a verified user in four steps.

Step 01 / 04

Create the workflow

Tick the wallets you accept in each country once they are live. Choose whether a cancelled or failed sign-in falls back to document capture or declines. No code required.

Built for developers · Built against fraud · Open by design

Six capabilities. One accept-list per country.

A wallet is one method inside ID Verification, on the same result contract as document capture. What changes is the evidence: a signature from the issuer instead of a photo.
01 · The catalog

Accept the wallets a country actually uses.

Every wallet carries its official mark, its issuing authority, the countries it operates in and its assurance level. All twenty-two sit in the same catalog your console reads, dashed until their go-live, so the list never over-promises.
02 · Accept-list

Tick what you accept. The user picks.

Wallets are an accept-list, never a ranking. There are no ordering controls anywhere, because the order would be a guess about a person you have not met yet. Norway lists four; the user chooses one.
03 · The hand-off

Hand off to the wallet, come back verified.

Didit runs the hand-off, the waiting screen and the return. If the user has no wallet, cancels, or the sign-in fails, one switch decides whether they fall back to document capture or are declined.
04 · Signed attributes

Read attributes the issuer signed.

Name, date of birth and the national identifier the wallet exposes, plus the signed assertion itself. Untick any optional attribute you do not want stored and it is never written to the session.
05 · Assurance

Reach the highest of the three assurance tiers.

A document gives you documentary assurance. A registry lookup gives you a data match. A wallet gives you cryptographic assurance, because the issuer signed the attributes and Didit checks that signature.
06 · Reach

Thirty-four countries in the catalog.

The EUDI Wallet alone covers thirty EU and EEA states once it goes live, and the national wallets add Brazil, Ukraine, the United Arab Emirates and the United Kingdom. Nothing on this page moves until the catalog says a wallet is ready, so your coverage claim and ours stay the same claim.
Integrate

One call out. One signed result back.

Create the session, send the user to it, and verify the signed webhook when the result lands. The wallet the user signed in with comes back on the result.
POST /v3/session/Hosted UI
$ 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"
  }'
201Created{ "url": "https://verify.didit.me/..." }
Didit shows the accepted wallets and runs the hand-off.docs
POST /webhooks/diditWebhook
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);
});
200OK{ "verification_method": "wallet", "assurance": "cryptographic" }
Verify the signature before you trust the payload.docs
Agent-ready integration

Ship wallet sign-in in one prompt.

Paste the block below into Claude Code, Cursor, Codex, Devin, Aider, or Replit Agent. Fill in the my_stack placeholder with your framework, language and use case. The agent provisions Didit, accepts the wallets per country, wires the webhook, and ships.
didit-integration-prompt.md
# 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
Compliant by design

Open a new country in one click. We do the hard work.

We open the local subsidiaries, secure the licenses, run the penetration tests, earn the certifications, and align with every new regulation. To ship verifications in a new country, flip a toggle. 220+ countries live, audited and pen-tested every quarter, the only identity provider an EU member-state government has formally called safer than in-person verification.
Read the security & compliance dossier
SOC 2 · Type II — AICPA · 2026
SOC 2 · Type I — AICPA · 2026
ISO/IEC 27001 — Information security · 2026
EU financial sandbox — Tesoro · SEPBLAC · BdE
FIDO Alliance — Associate member · 2026
iBeta Level 1 PAD — NIST / NIAP · 2026
GDPR — EU 2016/679
HIPAA — 45 CFR §160 · §164
DORA — EU 2022/2554
MiCA — EU 2023/1114
EBA remote onboarding — EBA/GL/2022/15
AMLD6 · eIDAS 2.0 — EU-aligned by design
Jugendschutz geprüft — FSM · JMStV §4(2) · 2026

Proof numbers

Proof numbers
  • 22
    Wallets in the methods catalog
  • 34
    Countries in the catalog
  • 10
    Wallets at eIDAS high assurance
  • $0.15
    Document capture, when a user falls back

Digital ID wallet pricing and availability

Prices below are USD per completed wallet verification. They cover the named identity product; other workflow checks and document fallback are billed separately. The 500 free monthly document checks do not cover wallets. An announced price does not mean a wallet is live: availability is shown separately. Unannounced prices are Coming soon. Identity wallets verify people; crypto wallet screening is a separate product.

Read the detailed documentation
Digital ID wallet pricing and availability
Identity walletUSD / completed verificationCountry / regionProduction availability
MitID personal$0.35
  • Denmark
Coming soon
BankID Sweden$0.30
  • Sweden
Coming soon
BankID Norway High$0.35
  • Norway
Coming soon
Vipps Plus$0.28
  • Norway
Coming soon
Buypass IDComing soon
  • Norway
Coming soon
itsmeComing soon
  • Belgium
  • Luxembourg
  • Netherlands
Coming soon
iDIN full identification$0.85
  • Netherlands
Coming soon
Finnish Trust Network$0.30
  • Finland
Coming soon
Personalausweis Profile 2$0.45
  • Germany
Coming soon
Freja eIDComing soon
  • Sweden
Coming soon
UAE PASSComing soon
  • United Arab Emirates
Coming soon
gov.brComing soon
  • Brazil
Coming soon
OneIDComing soon
  • United Kingdom
Coming soon
GOV.UK WalletComing soon
  • United Kingdom
Coming soon
Smart-IDComing soon
  • Estonia
  • Latvia
  • Lithuania
  • Belgium
Coming soon
Mobile-IDComing soon
  • Estonia
  • Latvia
  • Lithuania
Coming soon
Bank iDComing soon
  • Czechia
Coming soon
MojeIDComing soon
  • Czechia
Coming soon
DiiaComing soon
  • Ukraine
Coming soon
FranceConnectComing soon
  • France
Coming soon
AuðkenniComing soon
  • Iceland
Coming soon
EUDI WalletComing soon
  • Austria
  • Belgium
  • Bulgaria
  • Croatia
  • Cyprus
  • Czechia
  • Denmark
  • Estonia
  • Finland
  • France
  • Germany
  • Greece
  • Hungary
  • Ireland
  • Italy
  • Latvia
  • Lithuania
  • Luxembourg
  • Malta
  • Netherlands
  • Poland
  • Portugal
  • Romania
  • Slovakia
  • Slovenia
  • Spain
  • Sweden
  • Iceland
  • Liechtenstein
  • Norway
Coming soon
Three tiers, one price list

Start free. Pay as you go. Scale to Enterprise.

500 free verifications every month, forever. Then pay only when a module runs. Custom contracts, data residency, and service level agreements (SLAs) on Enterprise.

Free

$0/ month · no card

For building, testing, and your first users.

Everything you need to start:
  • 500 full KYC verifications every month
  • ID, liveness, face match, device & IP
  • 200+ fraud signals, blocklist, duplicates
  • Reusable KYC across the Didit network
  • Workflow builder, case management, SDKs
  • AI support In-console AI agent, docs, and community.
Most popular

Pay as you go

$0.33per full KYC

25+ modules, publicly priced. Automatic volume discounts.

Everything in Free, plus:
  • AML screening and monitoring from $0.07
  • Business registry pricing by country and data tier
  • Transaction monitoring at $0.02 each
  • Wallet screening at $0.15 per check
  • White-label flow under your own brand
  • AI support In-console AI agent, docs, and community.

Enterprise

Customannual contract

For large volumes and regulated programs.

Everything in Pay as you go, plus:
  • Annual contracts, committed-volume pricing
  • Custom legal terms and a 99.99% uptime SLA
  • Data residency, retention, security review
  • Manual reviewers on demand
  • Reseller and white-label terms
  • Priority human support 24/7 shared Slack channel, named success manager.

Volume discounts apply automatically as usage grows — no negotiation, no sales call.

FAQ

Common questions

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 2,000+ companies across 220+ countries
  • Secure, SOC 2 Type 1 & Type 2, 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 a digital ID wallet verification?

The user signs in with a government or bank digital identity they already have MitID in Denmark, BankID in Sweden and Norway, itsme in Belgium, UAE PASS, gov.br, the EUDI Wallet and the wallet returns signed attributes about them.

Didit checks the issuer signature, then writes the verified attributes onto the session. No document photo, no selfie, no typing.

It is one method inside ID_VERIFICATION, accepted per country next to document capture and non-document lookup.

Which wallets are in the catalog, and when can I accept them?

Twenty-two wallets across thirty-four countries are in the catalog: MitID (Denmark), BankID (Sweden and Norway), Vipps and Buypass ID (Norway), itsme (Belgium, Luxembourg, the Netherlands), iDIN (the Netherlands), the Finnish Trust Network, Personalausweis (Germany), Freja eID (Sweden), UAE PASS, gov.br (Brazil), OneID and GOV.UK Wallet (United Kingdom), Smart-ID and Mobile-ID (the Baltics), Bank iD and MojeID (Czechia), Diia (Ukraine), FranceConnect, Auðkenni (Iceland) and the EUDI Wallet, which alone covers thirty EU and EEA states.

None is live in production yet. Every wallet reads coming soon, cannot be switched on in a workflow, and carries no committed date. The list is served by the methods catalog, so a wallet becomes acceptable the day it is ready nothing on this page changes by hand.

How fast is the verification for my end user?

The full flow normally takes under 30 seconds end-to-end that is the fastest in the market. Legacy providers usually take more than 90 seconds for the same flow.

A wallet sign-in is usually the shortest path of all: the user taps their wallet, approves the request, and comes back. On the back end Didit returns the result in under two seconds at p99.

How do you stop a fake or replayed wallet sign-in?

The wallet issuer signs the attributes it returns, and Didit verifies that signature before anything is written to the session. signature_valid is on the result so you can assert it yourself.

Because the credential is issued by a bank or a government and bound to the holder, there is no document image to forge and no face to deepfake. That is why a wallet reaches cryptographic assurance the highest of the three tiers.

What happens if a user has no wallet, cancels, or the sign-in fails?

One switch covers all three cases: no wallet, cancelled, or sign-in failed. It either falls back to document capture or declines the session, and you set it per country.

The result records the method it fell back from and the reason, so an abandoned wallet sign-in is never invisible.

Which attributes does a wallet return?

Every wallet returns the holder's full name and, with two exceptions, date of birth, plus the signed assertion itself. Most add the national identifier the wallet exposes the Swedish personal number for BankID, the CPR alias for MitID, the national register number for itsme, the CPF for gov.br and a few add an address or a portrait: UAE PASS, GOV.UK Wallet and Diia hand back a photo of the holder.

The EUDI Wallet returns the person identification data (PID) the member state issued. Untick any optional attribute in the workflow and it is never written to the session.

The exact attribute list per wallet is on docs.didit.me.

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

Encrypted in transit and at rest, in the region you choose, under SOC 2 Type 1 and Type 2, ISO 27001 and GDPR.

A wallet only shares the attributes the request asks for, and you can untick any optional attribute so it is never stored at all. Required attributes are always stored, together with the signed assertion reference an auditor needs.

Full detail on /security-compliance.

Is Didit compliant for my industry?

Didit is in production with 2,000+ companies across regulated industries fintech, banking, iGaming, crypto, marketplaces, healthcare and government.

Wallet sign-in reaches cryptographic assurance, the strongest evidence of the three methods, and the assurance level is recorded on every session. Where a regulator names a specific national eID, accepting that wallet is usually the cleanest way to satisfy it.

Memos on /security-compliance.

How fast can I integrate and start verifying users?

Minutes, three ways.

  • No code build the workflow in the console, tick the wallets you accept per country, and send your user a link.
  • SDK or redirect Web, iOS, Android, React Native and Flutter, or a hosted page.
  • AI agent paste the integration prompt on this page into Claude Code, Cursor or Codex and let it wire the whole thing, including the webhook.

Start at business.didit.me, or read docs.didit.me/integration/integration-prompt.

Infrastructure for identity and fraud.

One API for KYC, KYB, Transaction Monitoring, and Wallet Screening. Integrate in 5 minutes.

Ask an AI to summarise this page