Address
Deliverability, territory planning, and compliance all hinge on trustworthy postal data. Delpha's Address Finder and Address Validator keep your address records complete, correct, and standardized—so shipments arrive, analytics stay reliable, and teams can act with confidence.
What you get:
Completeness: Detects missing parts (number, street, city, postal code, country) and fills gaps when possible.
Validity: Verifies that addresses exist and follow country-specific postal rules.
Consistency: Compares your input to its normalized version to surface discrepancies.
Accuracy: Checks coherence against optional context (e.g., company name, legal ID).
Each request returns a normalized address—standardized and, when possible, enriched. If you provide context like a legal ID or company name, you'll also receive AI-backed recommendations with confidence scores (for example, the registered legal address that best matches your input).
Together, Address Finder and Address Validator transform messy inputs into dependable, action-ready address data.
Submit an address for finding and validation. Returns a job ID for tracking the process.
- : Access to the public API
OAuth2 client credentials flow for API access
Payload to submit a new address quality job.
The address
{"city":"Paris","country":"France","postal_code":"75006","state":"Ile de France","street":"3 AVENUE VAVIN"}The name of the entity
DelphaThe legal ID of the entity
88052440000012The LinkedIn URL of the entity
https://www.linkedin.com/company/delphainc/The website URL of the entity
https://delpha.io/Job submitted to assess_address_v16
Invalid address format or missing required fields
Authentication failed - invalid or missing OAuth 2.0 token
Payment Required
Internal server error
Service unavailable
POST /v1/address HTTP/1.1
Host: api.delpha.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 251
{
"address": {
"city": "Paris",
"country": "France",
"postal_code": "75006",
"state": "Ile de France",
"street": "3 AVENUE VAVIN"
},
"name": "Delpha",
"legal_id": "88052440000012",
"linkedin": "https://www.linkedin.com/company/delphainc/",
"website": "https://delpha.io/"
}{
"job_id": "21014abc65004d2781d2e0ef4c9fbb46",
"message": "Job submitted to assess_address_v16",
"status": "SUCCESS",
"status_code": 202
}Retrieve the result and status of a previously submitted address finder and validator job.
- : Access to the public API
OAuth2 client credentials flow for API access
The unique identifier of the address job
{"summary":"Sample job ID","value":"21014abc65004d2781d2e0ef4c9fbb46"}Job succeeded.
Job is still running.
Input validation failed.
Authentication failed - invalid or missing OAuth 2.0 token
Failed to retrieve job.
Job timed out.
GET /v1/address/{job_id} HTTP/1.1
Host: api.delpha.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"message": "Job succeeded.",
"status": "SUCCESS",
"status_code": 200,
"result": {
"data_type": "address",
"normalized_value": {
"street_number": "3",
"place_name": "",
"street": "AVE Vavin",
"full_street": "3 AVE Vavin",
"city": "Paris",
"state": "Ile-de-France",
"postal_code": "75006",
"country": "France"
},
"label": "Ok",
"scores": {
"validity": 1,
"completeness": 1,
"accuracy": 1,
"consistency": 1
},
"recommendations": [
{
"address": {
"street_number": "3",
"place_name": "",
"street": "AVE Vavin",
"full_street": "3 AVE Vavin",
"city": "Paris",
"state": "Ile-de-France",
"postal_code": "75006",
"country": "France"
},
"score": 0.996
}
]
},
"process_time": 0.123
}Last updated
Was this helpful?