Catch sybils with Face Search 1:N. One human, one account.
Search every new sign-up selfie against the gallery of prior approved selfies. A match means the same human already has an account. Face Search is free; 500 verifications free every month.
Email aliases and burner SIMs cost cents. A human face is the one identifier
the sybil farmer cannot rotate. Face Search 1:N against your prior-selfie
gallery makes the same person impossible to hide. Free per search, 500
verifications free every month.
How it works
From sign-up to verified user in four steps.
Step 01
Create the workflow
Pick the checks you want — ID, liveness, face match, sanctions, address, age, phone, email, custom questions. Drag them into a flow in the dashboard, or post the same flow to our API. Branch on conditions, run A/B tests, no code required.
Step 02
Integrate
Embed natively with our Web, iOS, Android, React Native, or Flutter SDK. Redirect to a hosted page. Or just send your user a link — by email, SMS, WhatsApp, anywhere. Pick what fits your stack.
Step 03
User goes through the flow
Didit hosts the camera, the lighting cues, the mobile hand-off, and accessibility. While the user is in the flow, we score 200+ fraud signals in real time and verify every field against authoritative data sources. Result in under two seconds.
Step 04
You receive the results
Real-time signed webhooks keep your database in sync the moment a user is approved, declined, or sent to review. Poll the API on demand. Or open the console to inspect every session, every signal, and manage cases your way.
Built for the recipe · Priced like infrastructure
Six checks. One signed verdict. Free per face search.
Multi-account defence is a composition — search, liveness, cross-account links, audit trail. Toggle each module per workflow in the Workflow Builder.
Sybil airdrops, referral payout cycles, iGaming multi-accounting that bypasses self-exclusion, marketplace fake-review clusters, DAO vote stuffing, welcome-bonus stacking on neobank or brokerage sign-ups. Same Workflow Builder workflow protects every variant.
Face Search 1:N indexes the selfie captured on sign-up and searches it against the gallery of prior approved selfies under your account. Returns top candidates with a similarity score. Free per search — no per-call fee. Vector search returns in sub-two-second.
When the search finds matches, the webhook payload carries each prior session_id, the matching user reference, and the similarity score. Tune the hard / soft thresholds per workflow — default 0.85 = Declined, 0.75–0.85 = In Review, < 0.75 = Approved.
Threshold tunable per workflow3 hits · cluster of 3
04 · Cross-account link signals
Same device. Same IP. Same payment method.
Compose Device & IP Analysis ($0.03 / call) in the same workflow. The decision payload surfaces device fingerprint, Internet Protocol (IP) address, Autonomous System Number (ASN), and country. Combine with a payment-instrument hash from your back-end to cluster sybils before the face search confirms.
Signals fed by Device & IP Analysis + your back-end.
05 · Reusable identity anchor
One identity. Many products. No clones.
Reusable KYC lets a legitimate user re-enter your other products with a previously verified credential at zero cost — that is intentional reuse, not abuse. Sybil farmers cannot replay the same credential across new accounts because the face search still anchors back to the one issued identity.
One human. One anchor. Many products.eIDAS 2 aligned
06 · Signed webhook decision
Signed verdict. Full match list as audit trail.
A signed webhook lands with the verdict — Approved, In Review, Declined — plus the full list of matched session_ids and similarity scores. Verify X-Signature-V2 with Hash-based Message Authentication Code (HMAC) SHA-256 before reading. The match list is the audit trail for any dispute.
Do not create the account until the webhook lands status: Approved.docs →
POST /webhooks/diditMatch list
// X-Signature-V2 verified upstreamif (payload.status === "Declined") {logCluster(payload.face_search.matches);blockSignup(payload.vendor_data);} else if (payload.status === "In Review") {queueForAnalyst(payload);}
200OKstatus Approved · Declined · In Review · Not Finished
Verify X-Signature-V2 before reading the payload.docs →
Agent-ready integration
Ship a Face Search 1:N sybil-gate in one prompt.
Paste into Claude Code, Cursor, Codex, Devin, Aider, or Replit Agent. Fill in your stack. The agent wires the workflow, opens the session, reads the match list, blocks the duplicate.
didit-integration-prompt.md
You are integrating Didit Face Search 1:N to catch the same human opening many accounts on your platform — sybil airdrops, referral payout cycles, sign-up bonus stacking, iGaming multi-accounting that bypasses self-exclusion, marketplace fake-review clusters. One API call. One signed webhook. One decision.
WHY THIS SHAPE
- Email, phone, device, IP can all be rotated cheaply. A human face cannot.
- Every new sign-up captures one Passive Liveness selfie. Didit searches that selfie against the gallery of prior approved selfies under your account. A high-similarity match means the same person already has an account.
- Face Search 1:N itself is FREE on every session — no per-search fee. Only the surrounding bundle (ID + Passive Liveness + AML) carries the usual cost. Use the full Know Your Customer (KYC) bundle on sign-up or the Passive Liveness + Face Search subset, depending on what the product needs.
PRE-REQUISITES
- Production API key from https://business.didit.me (sandbox key in 60 seconds, no credit card).
- A webhook endpoint with HMAC SHA-256 verification of the X-Signature-V2 header using your webhook secret.
- A Workflow Builder workflow that contains the Face Search 1:N module. Compose it with Passive Liveness so an attacker cannot upload a still photo of the target.
- Define what a "match" means for your product. Default: similarity ≥ 0.85 = Declined. 0.75–0.85 = In Review. < 0.75 = Approved.
STEP 1 — Open the sign-up session
POST https://verification.didit.me/v3/session/
Headers:
x-api-key: <your api key>
Content-Type: application/json
Body:
{
"workflow_id": "<wf id with Face Search 1:N + Passive Liveness>",
"vendor_data": "<your new-account id, max 256 chars>",
"callback": "https://<your-app>/sybil-gate/callback",
"metadata": {
"surface": "airdrop_claim",
"campaign": "<your campaign id>"
}
}
Response: 201 Created with a hosted session URL. Redirect inline (web) or open in a Software Development Kit (SDK) webview (mobile). The new account stays UNCREATED on your side until the signed webhook lands.
STEP 2 — Read the signed webhook
Didit POSTs the verdict. Verify X-Signature-V2 (HMAC SHA-256 of the raw body) BEFORE reading the JSON.
Payload (excerpted, match case):
{
"session_id": "<uuid>",
"vendor_data": "<your new-account id>",
"status": "Declined",
"face_search": {
"matches": [
{ "session_id": "sess-9182", "similarity": 0.96, "vendor_data": "user-A1" },
{ "session_id": "sess-7733", "similarity": 0.94, "vendor_data": "user-A2" }
]
}
}
Session status enum (exact case, Title Case With Spaces): Approved | Declined | In Review | Resubmitted | Expired | Not Finished | Kyc Expired | Abandoned.
STEP 3 — Branch the sign-up
Approved → no gallery match. Create the account.
In Review → soft match (similarity in your grey-zone band). Queue for human review.
Declined → hard match (similarity above your hard threshold). Block, log the matched session_id list as the audit trail.
STEP 4 — Cross-account link signals (optional but cheap)
Compose Device & IP Analysis ($0.03 / call) in the same workflow. The decision payload surfaces device fingerprint, IP, Autonomous System Number (ASN), country, and city. Combine with your own payment-instrument hash and you can cluster sybils even before the face search confirms.
STEP 5 — Reusable KYC for legitimate cross-product re-entry
If the user is supposed to reuse one identity across multiple products you own, Reusable KYC lets them replay a previously verified credential at no cost. That is different from sybil abuse — reuse is intentional and you control the issuance.
WEBHOOK EVENT NAMES
- Sessions: standard session webhook. One endpoint, status field tells you the lifecycle.
- Verify X-Signature-V2 (HMAC SHA-256) on every payload.
WHAT IT BLOCKS
- Sybil airdrop / token claims (one person · many wallets)
- Self-referral payout cycles (sign-up bonus farms)
- iGaming multi-accounting that bypasses self-exclusion
- Marketplace fake-review clusters from a single human
- DAO and community-vote stuffing
- Welcome-bonus stacking on neobank / brokerage sign-ups
CONSTRAINTS
- Session statuses use Title Case With Spaces. Never UPPER_SNAKE_CASE for session verdicts — that's the Transactions API.
- Face Search 1:N WITHOUT Passive Liveness lets an attacker upload a still photo of the target. Always compose them together.
- Thresholds are tunable per workflow. Start at 0.85 hard / 0.75 soft and adjust based on your false-positive tolerance.
- The gallery is scoped to your account — no cross-customer leakage by design.
Read the docs:
- https://docs.didit.me/sessions-api/create-session
- https://docs.didit.me/core-technology/face-search/overview
- https://docs.didit.me/core-technology/liveness/overview
- 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.
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.
Per Face Search 1:N — no per-call fee. Only the bundle around it carries cost.
<0s
Vector-search verdict end-to-end on entry-level Android.
iBeta L1
Passive Liveness on every selfie — no still-photo bypass.
0
Free verifications every month, on every account.
Three tiers, one price list
Start free. Pay per usage. Scale to Enterprise.
500 free verifications every month, forever. Pay-as-you-go for production. Custom contracts, data residency, and SLAs (Service Level Agreements) on Enterprise.
Free
Free
$0 / month. No credit card required.
Free KYC bundle (ID Verification + Passive Liveness + Face Match + Device & IP Analysis) — 500 / month, every month
Blocklisted Users
Duplicate Detection
200+ fraud signals on every session
Reusable KYC across the Didit network
Case Management Platform
Workflow Builder
Public docs, sandbox, SDKs, MCP (Model Context Protocol) server