소스 정보
- 저장소
- 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-proof-of-address명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | didit-proof-of-address |
| description | > Use when this capability is needed. |
Verifies address documents by submitting images or PDFs. Extracts address information, performs authenticity checks, name matching, geocoding, and returns structured data.
Key constraints:
Capabilities: OCR extraction, intelligent document classification, name matching with identity documents, issue date validation, geocoding with lat/lng coordinates, language detection, multi-page support.
Accepted document types:
| Category | Examples |
|---|---|
| Utility Bill | Electricity, water, gas, internet, phone, combined utilities |
| Bank Statement | Account statement, credit card, mortgage, loan |
| Government-Issued | Tax assessment, residency certificate, voter registration |
| Other PoA | Lease, rental agreement, insurance policy, employer letter |
API Reference: https://docs.didit.me/standalone-apis/proof-of-address Feature Guide: https://docs.didit.me/core-technology/proof-of-address/overview
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/poa/
| Header | Value | Required |
|---|---|---|
x-api-key | Your API key | Yes |
Content-Type | multipart/form-data | Yes |
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
document | file | Yes | — | PoA document (JPG/PNG/TIFF/PDF, max 15MB) |
save_api_request | boolean | No | true | Save in Business Console |
vendor_data | string | No | — | Your identifier for session tracking |
import requests
response = requests.post(
"https://verification.didit.me/v3/poa/",
headers={"x-api-key": "YOUR_API_KEY"},
files={"document": ("utility_bill.pdf", open("bill.pdf", "rb"), "application/pdf")},
data={"vendor_data": "user-123"},
)
print(response.json())
const formData = new FormData();
formData.append("document", documentFile);
const response = await fetch("https://verification.didit.me/v3/poa/", {
method: "POST",
headers: { "x-api-key": "YOUR_API_KEY" },
body: formData,
});
{
"request_id": "a1b2c3d4-...",
"poa": {
"status": "Approved",
"issuing_state": "ESP",
"document_type": "UTILITY_BILL",
"issuer": "Endesa",
"issue_date": "2025-01-15",
"document_language": "es",
"name_on_document": "Elena Martínez Sánchez",
"poa_address": "Calle Mayor 10, 28013 Madrid",
"poa_formatted_address": "Calle Mayor 10, 28013 Madrid, Spain",
"poa_parsed_address": {
"street_1": "Calle Mayor 10",
"city": "Madrid",
"region"
| Status | Meaning | Action |
|---|---|---|
"Approved" | Address verified, document valid | Proceed with your flow |
"Declined" | Document invalid or expired | Check warnings for specific reason |
"In Review" | Needs manual review | Check for name mismatch or quality issues |
"Not Finished" | Processing incomplete | Wait or retry |
| Code | Meaning | Action |
|---|---|---|
400 | Invalid request | Check file format, size, parameters |
401 | Invalid API key | Verify x-api-key header |
403 | Insufficient credits | Top up at business.didit.me |
| Field | Type | Description |
|---|---|---|
status | string | "Approved", "Declined", "In Review", "Not Finished" |
issuing_state | string | ISO 3166-1 alpha-3 country code |
document_type | string | "UTILITY_BILL", "BANK_STATEMENT", "GOVERNMENT_ISSUED_DOCUMENT", "OTHER_POA_DOCUMENT", "UNKNOWN" |
issuer | string | Issuing institution name |
issue_date | string | YYYY-MM-DD |
document_language | string | Detected language code |
name_on_document | string | Extracted name |
poa_address | string | Raw extracted address |
poa_formatted_address | string | Formatted address |
poa_parsed_address | object | {street_1, street_2, city, region, postal_code} |
poa_parsed_address.raw_results.geometry.location | object | {lat, lng} geocoded coordinates |
document_file | string | Temporary URL (expires 60 min) |
warnings | array | {risk, log_type, short_description, long_description} |
| Tag | Description |
|---|---|
POA_DOCUMENT_NOT_SUPPORTED_FOR_APPLICATION | Document type not accepted for your app |
EXPIRED_DOCUMENT | Document older than 90 days |
INVALID_DOCUMENT_TYPE | Document cannot be processed |
MISSING_ADDRESS_INFORMATION | No valid address could be extracted |
| Tag | Description |
|---|---|
NAME_MISMATCH_WITH_PROVIDED | Name doesn't match verified identity |
NAME_MISMATCH_ID_VERIFICATION | Name doesn't match ID document |
POA_NAME_MISMATCH_BETWEEN_DOCUMENTS | Names differ between multiple PoA docs |
POOR_DOCUMENT_QUALITY | Insufficient image quality |
DOCUMENT_METADATA_MISMATCH | Digital signature/metadata indicates tampering |
SUSPECTED_DOCUMENT_MANIPULATION | Signs of document manipulation |
UNSUPPORTED_DOCUMENT_LANGUAGE | Document language not supported |
ADDRESS_MISMATCH_WITH_PROVIDED | Address doesn't match provided address |
UNABLE_TO_EXTRACT_ISSUE_DATE | Could not determine issue date |
ISSUER_NOT_IDENTIFIED | Could not identify issuing institution |
UNPARSABLE_OR_INVALID_ADDRESS | Address couldn't be parsed |
UNABLE_TO_VALIDATE_DOCUMENT_AGE | Could not determine document age |
FUTURE_ISSUE_DATE | Issue date is in the future |
Warning severity: error (→ Declined), warning (→ In Review), information (no effect).
1. POST /v3/poa/ → {"document": utility_bill}
2. If "Approved" → address verified
If "Declined" → check warnings:
EXPIRED_DOCUMENT → ask for a more recent document
MISSING_ADDRESS_INFORMATION → ask for clearer image
NAME_MISMATCH → verify identity matches
1. POST /v3/id-verification/ → verify identity document
2. POST /v3/passive-liveness/ → verify real person
3. POST /v3/poa/ → verify address
4. System auto-matches name between ID and PoA documents
5. All Approved → identity + address verified
verify_address.py: Verify proof of address documents from the command line.
# Requires: pip install requests
export DIDIT_API_KEY="your_api_key"
python scripts/verify_address.py utility_bill.pdf
python scripts/verify_address.py bank_statement.jpg --vendor-data user-123
Converted and distributed by TomeVault — claim your Tome and manage your conversions.