소스 정보
- 저장소
- tomevault-io/skills-registry
- 최근 소스 활동
- 2026년 5월 11일 15:30
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill didit-database-validation명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | didit-database-validation |
| description | > Use when this capability is needed. |
Verifies personal data and identity documents against trusted government and financial databases. Prevents synthetic identity fraud and ensures identity authenticity.
Key constraints:
full_match, partial_match, or no_matchMatching methods:
| Method | Description | Starting Price |
|---|---|---|
| 1x1 | Single data source validation | $0.05 |
| 2x2 | Two data sources cross-validation | $0.30 |
API Reference: https://docs.didit.me/standalone-apis/database-validation Feature Guide: https://docs.didit.me/core-technology/database-validation/overview Supported Countries: https://docs.didit.me/core-technology/database-validation/database-validation-supported-countries
All requests require x-api-key header. Get your key from Didit Business Console → API & Webhooks, or via programmatic registration (see below).
If you don't have a Didit API key, create one in 2 API calls:
POST https://apx.didit.me/auth/v2/programmatic/register/ with {"email": "you@gmail.com", "password": "MyStr0ng!Pass"}POST https://apx.didit.me/auth/v2/programmatic/verify-email/ with {"email": "you@gmail.com", "code": "A3K9F2"} → response includes api_keyTo add credits: GET /v3/billing/balance/ to check, POST /v3/billing/top-up/ with {"amount_in_dollars": 50} for a Stripe checkout link.
See the didit-verification-management skill for full platform management (workflows, sessions, users, billing).
POST https://verification.didit.me/v3/database-validation/
| Header | Value | Required |
|---|---|---|
x-api-key | Your API key | Yes |
Content-Type | application/json | Yes |
| Parameter | Type | Required | Description |
|---|---|---|---|
id_number | string | Yes | Universal ID number — auto-maps to correct country field |
first_name | string | No | First name for matching |
last_name | string | No | Last name for matching |
date_of_birth | string | No | DOB in YYYY-MM-DD (required for some countries) |
issuing_state | string | No | ISO 3166-1 alpha-3 country code |
save_api_request | boolean | No | Save in Business Console |
vendor_data | string | No | Your identifier for session tracking |
The id_number field auto-maps to the correct country-specific field:
| Country | Mapped Field | Document | Format |
|---|---|---|---|
| ARG | document_number | DNI | — |
| BOL | document_number | CI | — |
| BRA | tax_number | CPF | 11 digits |
| CHL | personal_number | RUT | — |
| COL | personal_number | Cedula | — |
| CRI | personal_number | Cedula | — |
| DOM | personal_number | Cedula | 11 digits |
| ECU | personal_number | Cedula | 10 digits |
| ESP | personal_number | DNI/NIE | — |
| GTM | document_number | DPI | — |
| HND | document_number | DNI | — |
| MEX | personal_number | CURP | 18 chars |
| PAN | document_number | Cedula | — |
| PER | personal_number | DNI | 8 digits |
| PRY | document_number | CI | — |
| SLV | document_number | DUI | — |
| URY | personal_number | CI | — |
| VEN | document_number | Cedula | — |
import requests
response = requests.post(
"https://verification.didit.me/v3/database-validation/",
headers={"x-api-key": "YOUR_API_KEY", "Content-Type": "application/json"},
json={
"id_number": "12345678",
"first_name": "Carlos",
"last_name": "Garcia",
"issuing_state": "PER",
},
)
print(response.json())
const response = await fetch("https://verification.didit.me/v3/database-validation/", {
method: "POST",
headers: { "x-api-key": "YOUR_API_KEY", "Content-Type": "application/json" },
body: JSON.stringify({
id_number: "12345678",
first_name: "Carlos",
last_name: "Garcia",
issuing_state: "PER",
}),
});
{
"request_id": "a1b2c3d4-...",
"database_validation": {
"status": "Approved",
"match_type": "full_match",
"issuing_state": "PER",
"validation_type": "1x1",
"screened_data": {
"personal_number": "12345678",
"first_name": "Carlos",
"last_name": "Garcia"
},
"validations": {
"full_name": "full_match",
"identification_number": "full_match"
}
}
}
| Status | Meaning | Action |
|---|---|---|
"Approved" | Full match against government records | Identity confirmed |
"Declined" | No match found | Identity could not be verified |
"In Review" | Partial match or insufficient data | Review screened_data and validations |
| Code | Meaning | Action |
|---|---|---|
400 | Invalid request | Check ID number format for target country |
401 | Invalid API key | Verify x-api-key header |
403 | Insufficient credits | Top up at business.didit.me |
| Result | Criteria |
|---|---|
| Full Match | Full name concatenation at 85% similarity (Levenshtein), OR First + Last both full match |
| Partial Match | Any single name component full match |
| No Match | No component reaches 70% similarity |
Individual name components use 70% Levenshtein threshold. Example: "Christophel" vs "Christopher" = Full Match; "Chris" vs "Christopher" = No Match.
| Match Type | Name | ID Number |
|---|---|---|
full_match | Full Match | Full Match |
partial_match | Partial Match | Full Match |
no_match | All other combinations | — |
Requires matching against 2 independent data sources:
| Match Type | Condition |
|---|---|
full_match | Both sources confirm name + ID |
partial_match | One source confirms |
no_match | Neither source confirms |
DOB and ID number matching is exact only — no fuzzy matching.
| Tag | Description |
|---|---|
COULD_NOT_PERFORM_DATABASE_VALIDATION | Missing required data — provide ID number, name, and country |
DATABASE_VALIDATION_PARTIAL_MATCH | Partial match found — requires investigation |
DATABASE_VALIDATION_NO_MATCH | No match found in government records |
When
COULD_NOT_PERFORM_DATABASE_VALIDATIONfires, session goes to "In Review". Validation auto-retriggers once missing data is provided.
| Country | Method | Coverage | Required Input |
|---|---|---|---|
| Argentina | 1x1 | 95% | Document number |
| Bolivia | 1x1 | 95% | Document number + DOB |
| Brazil | 1x1 | 95% | Tax number (CPF) |
| Chile | 1x1 | 95% | Personal number (RUT) |
| Colombia | 1x1 | 95% | Document number + type |
| Costa Rica | 1x1 | 95% | Personal number |
| Dominican Republic | 1x1 | 95% | Personal number |
| Ecuador | 1x1 / 2x2 | 90-96% | Personal number |
| El Salvador | 1x1 | 95% | Document number + DOB |
| Guatemala | 1x1 | 95% | Document number |
| Honduras | 1x1 | 95% | Document number |
| Mexico | 1x1 | 95% | Personal number (CURP) |
| Panama | 1x1 | 95% | Document number + DOB |
| Paraguay | 1x1 | 95% | Document number |
| Peru | 1x1 / 2x2 | 95-99% | Personal number |
| Spain | 1x1 | 95% | Personal number + doc type + expiry |
| Uruguay | 1x1 | 95% | Personal number + DOB |
| Venezuela | 1x1 | 95% | Document number |
validate_database.py: Validate identity against government databases from the command line.
# Requires: pip install requests
export DIDIT_API_KEY="your_api_key"
python scripts/validate_database.py --id-number 12345678 --country PER --first-name Carlos --last-name Garcia
python scripts/validate_database.py --id-number GARC850315HDFRRL09 --country MEX
Converted and distributed by TomeVault — claim your Tome and manage your conversions.