Address Validation API (1.0.0)

Download OpenAPI specification:

An API-based Address Validation Solution that cross-checks user-provided addresses against authoritative databases, such as telecom data, government registries, and logistics databases, to ensure accuracy. The API enhances security, reduces fraud, and improves efficiency in transaction processing and delivery services.

Use Cases

1. Real Estate & Property Management

Industry & Context – Real Estate & Property Management in the Philippines

The real estate sector in the Philippines—especially in Metro Manila, Cebu, and Davao—is experiencing rapid growth, with increased demand for residential leasing, property sales, and short-term rentals. However, property fraud and tenant verification remain major issues. Fake addresses are commonly used in rental applications, subleasing scams, and even in fake listings.

Use Case Scenario:

  • A property management company receives a rental application from a prospective tenant claiming to live in a Makati condo.

  • To verify the applicant, the agency uses the Address Validation API, which cross-references the declared address with telecom and government utility records.

  • The system flags the address as non-existent or inconsistent with public data.

  • The leasing officer is alerted and avoids onboarding a potentially fraudulent tenant.

  • Additionally, when posting listings, brokers and developers can verify that the address is valid and formatted correctly, improving listing accuracy on marketplpace platforms.

Key Benefits:

  • Fraud Prevention in tenant onboarding

  • Improved address consistency for property listings and contracts

  • Enhanced trust and transparency in leasing and real estate transactions

  • Time savings from reduced manual background checks

Potential Customers:

  • Property developers

  • Online real estate marketplaces

  • Property management firms and leasing agencies

  • Condominium associations and homeowner associations (HOAs)

Competitive Edge:

Unlike generic geocoding tools, this API provides multi-source address validation (telco, LGU, utilities) with fraud detection capabilities, tailored for the Philippine context, where informal addresses and PO boxes are common.

2. Government Social Services & Aid Distribution

Industry & Context – Government Services and Social Aid Programs

The Philippine government regularly deploys social welfare programs such as 4Ps, disaster relief, and emergency subsidies. However, beneficiary fraud and inefficiencies in aid delivery due to fake or unverified addresses lead to wasted resources and public dissatisfaction.

Use Case Scenario:

  • During typhoon relief efforts, DSWD compiles a list of aid recipients in a flood-prone barangay.

  • Before distributing cash assistance or goods, the agency integrates the Address Validation API to confirm that listed recipients reside in the claimed barangay.

  • The system flags duplicates and invalid addresses based on telco and LGU data.

  • As a result, resources are properly allocated to actual residents, and fraudulent claims are minimized.

Key Benefits:

  • Improved targeting and efficiency in aid delivery

  • Reduced wastage and fraud

  • Greater accountability and transparency

  • Strengthened public trust in government operations

Potential Customers:

  • National government agencies

  • Local Government Units

  • Disaster response NGOs

  • Tech platforms powering e-governance or citizen services

Competitive Edge:

Most government databases are fragmented and lack real-time validation. This API offers a unified, real-time verification tool that enhances data integrity across multiple systems, aligned with Philippine e-governance goals and compliance frameworks.

Client

Perform KYC Verification

Matches end-user PII data with records and returns similarity scores.

Request Body schema: application/json
required
msisdn
string
address
string <date>
city
string
province
string
zipCode
string
country
string
key
string
secret
string

Responses

Request samples

Content type
application/json
{
  • "msisdn": "+639171234567",
  • "address": "18B W Fifth, 5th Avenue, BGC",
  • "city": "Taguig",
  • "province": "Metro Manila",
  • "zipCode": "1635",
  • "country": "Philippines",
  • "key": "<string>",
  • "secret": "<string>"
}

Response samples

Content type
application/json
{
  • "addressMatch": "true",
  • "addressMatchScore": 100,
  • "cityMatch": "true",
  • "cityMatchScore": 100,
  • "provinceMatch": "true",
  • "provinceMatchScore": 100,
  • "zipCodeMatch": "true",
  • "zipCodeMatchScore": 100,
  • "countryMatch": "true",
  • "countryMatchScore": 100
}