Didit
가입하기데모 받기

얼굴 검색 1:N

실시간으로 알려진 얼굴을 찾아 식별하세요

Face Search 1:N은 얼굴이 시스템에 이전에 나타났는지 여부를 감지합니다. 중복 및 차단 목록에 있는 사용자를 중지하기 위해 Didit 워크플로 내에서 자동으로 무료로 실행되며 고급 식별 사용 사례를 위해 API를 통해 사용할 수도 있습니다.

전 세계 1000개 이상의 기업이 신뢰

GBTC Finance
Bondex
Crnogorski Telekom
CrediDemo
Shiply
Adelantos
실시간

얼굴 검색 결과

(밀리초)

무료

워크플로 내

(중복 및 차단 목록 감지)

1:N

생체 인식 검색

(모든 알려진 얼굴)

작동 방식

얼굴 검색 작동 방식

DIDIT 얼굴 검색

팀이 Didit을 얼굴 검색에 선택하는 이유

내장된 보호 기능

워크플로 내 무료 중복 감지

Face Search는 Didit 워크플로에서 자동으로 실행되어 중복 및 차단 목록에 있는 얼굴을 감지하여 추가 비용 없이 반복적인 사기를 중지합니다.

강력한 1:N 검색

알려진 얼굴 즉시 식별

API를 통해 Face Search를 사용하여 얼굴이 앱에 이미 온보딩되었는지 여부를 확인하고 신뢰도 점수와 함께 가장 유사한 알려진 신원을 검색하세요.

실시간 및 확장 가능

대용량 사용 사례를 위해 구축됨

액세스 제어, 스마트 시티, 얼굴 결제와 같은 실시간 시나리오를 위해 설계된 Face Search는 대규모로 즉각적인 결과를 제공합니다.

모듈식 & 개발자 우선

단독으로 사용하거나 조합하여 사용하세요

워크플로우 내에서 Face Search를 자동으로 사용하거나 API를 통해 직접 호출하세요. Liveness, Face Match, KYC와 결합하거나 단독으로 사용할 수 있습니다.

완전한 투명성

기능 가격

🛠️ 설치 비용 없음. 💸 최소 금액 없음. 🎊 깜짝 요금 없음. 완료된 기능에 대해서만 청구되는 명확한 가격 ✨

translation_v12.pricing.features.faceSearch.title
얼굴 검색 1:N새로운 사용자의 셀카를 기존 데이터베이스와 비교하여 중복 계정을 즉시 감지하고 차단하는 자동화된 사기 방지 확인입니다.
무료
얼굴 검색 1:N API단일 얼굴 이미지를 당사 API에 제출하여 기존 사용자 데이터베이스 또는 비공개 차단 목록에 대한 중복을 검색하세요. 잠재적 일치 항목에 대한 실시간 응답을 받아 강력하고 세분화된 사기 방지 도구를 제공합니다.
$0.05

통합하기 가장 쉬움

당신의 방식으로 Didit 통합

노코드 또는 단일 API 호출로 Didit을 사용하세요. 몇 분 안에 라이브로 전환.

노코드

미리 구축된 인증 링크를 사용하여 전체 KYC 플로우를 즉시 실행하세요 — 엔지니어링 작업이 필요 없습니다.

링크를 공유하고 웹훅 또는 콘솔에서 결과를 받기만 하면 됩니다.

주요 사항

  • 개발 필요 없음
  • 미리 구축된, 모바일 최적화 플로우
  • 콘솔에서 제어
  • 실시간 결정 + 웹훅
문서 보기
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.

인증

엔터프라이즈 신뢰에 대한 인증

당사의 플랫폼은 정보 보안, 데이터 개인 정보 보호 및 생체 인식 정확도에 대한 최고 국제 표준을 충족합니다.

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의 리스크 관리자

FACE SEARCH 1:N FAQ

Face Search 1:N에 대한 질문

Face Search는 Didit 애플리케이션의 모든 알려진 얼굴과 비교하여 얼굴이 이미 시스템에 존재하는지 여부를 결정하는 1:N 생체 인식 기능입니다.

몇 분 안에 사용자 인증 시작

무료 계정, 즉시 사용 가능한 샌드박스 및 모든 기능에 대한 전체 액세스를 받으세요. 계약 없음. 영업 통화 없음. 신용카드 불필요.