VerifyHQ Docs

Address Verification

Verify proof of address through utility bills, bank statements, and government correspondence. AI-powered extraction validates name, address, issue date, and document authenticity. Supports documents in English and French.

Accepted Documents
Utility bills (electricity, water, internet), bank statements, tax documents, and government-issued correspondence dated within the last 3 months.
POST/verifications/address

Submit a proof-of-address document URL for verification.

Request Body

ParameterTypeDescription
userIdrequiredstringYour internal user identifier
documentTyperequiredenumUTILITY_BILL, BANK_STATEMENT, TAX_DOCUMENT, or GOVERNMENT_LETTER
documentUrlrequiredstringURL of the uploaded proof-of-address document
declaredAddressstringDeclared address to match against the document

Code Examples

curl -X POST https://api.verifyhq.wejoona.com/verifications/address \
  -H "X-API-Key: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "userId": "user_123",
    "documentType": "UTILITY_BILL",
    "documentUrl": "https://cdn.example.com/electricity-bill.pdf",
    "declaredAddress": "12 Rue du Commerce, Abidjan"
  }'

Response

201 Createdjson
{
  "id": "addr_abc123",
  "userId": "user_123",
  "documentType": "UTILITY_BILL",
  "status": "PROCESSING",
  "createdAt": "2026-02-18T13:00:00Z"
}
GET/verifications/address/:id

Retrieve the status and extracted data of an address verification.

curl https://api.verifyhq.wejoona.com/verifications/address/addr_abc123 \
  -H "X-API-Key: your_api_key"

Response

200 OKjson
{
  "id": "addr_abc123",
  "userId": "user_123",
  "documentType": "UTILITY_BILL",
  "status": "VERIFIED",
  "extractedData": {
    "fullName": "Adebayo Ogunlesi",
    "address": "12 Rue du Commerce, Abidjan, Côte d'Ivoire",
    "issueDate": "2026-01-05",
    "issuer": "CIE Electricity"
  },
  "addressMatch": true,
  "documentAge": "44 days",
  "completedAt": "2026-02-18T13:00:35Z",
  "createdAt": "2026-02-18T13:00:00Z"
}
GET/verifications/address/user/:userId

List all address verifications for a specific user.

Query Parameters

ParameterTypeDescription
pagenumberPage number (default: 1)
limitnumberItems per page (default: 20, max: 100)
curl "https://api.verifyhq.wejoona.com/verifications/address/user/user_123?page=1&limit=10" \
  -H "X-API-Key: your_api_key"
POST/verifications/address/:id/review

Submit a manual review decision for an address verification in MANUAL_REVIEW status.

Request Body

ParameterTypeDescription
decisionrequiredenumVERIFIED or REJECTED
reviewedByrequiredstringIdentifier of the reviewer
reviewNotesrequiredstringNotes explaining the review decision
curl -X POST https://api.verifyhq.wejoona.com/verifications/address/addr_abc123/review \
  -H "X-API-Key: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "decision": "VERIFIED",
    "reviewedBy": "admin_john",
    "reviewNotes": "Address matches utility bill. Document is recent."
  }'

Verification Statuses

ParameterTypeDescription
PROCESSINGstatusDocument uploaded, AI extraction in progress
MANUAL_REVIEWstatusFlagged for human review (low confidence or mismatches)
VERIFIEDstatusAddress confirmed from document
REJECTEDstatusDocument invalid, expired, or address mismatch

Webhook Events

ParameterTypeDescription
address.verifiedeventAddress successfully verified from document
address.rejectedeventAddress verification rejected
address.manual_revieweventAddress verification flagged for manual review