Parse An Address
POST/v1/addver/parses
Parses a freeform address string into its individual components (house number, street name, city, state, postal code, etc.).
Useful for extracting structured data from a single-line address without running a full verification.
- Uses 1 lookup.
Parse An Address
curl https://api.postgrid.com/v1/addver/parses \
-H 'Content-Type: application/json' \
-H "X-API-Key: $POSTGRID_ADDRESS_VERIFICATION_API_KEY" \
-d '{
"address": "address"
}'{
"data": {
"category": "category",
"city": "city",
"cityDistrict": "cityDistrict",
"country": "country",
"house": "house",
"houseNumber": "houseNumber",
"island": "island",
"level": "level",
"near": "near",
"poBox": "poBox",
"postcode": "postcode",
"road": "road",
"state": "state",
"stateDistrict": "stateDistrict",
"suburb": "suburb",
"unit": "unit"
},
"message": "message",
"status": "success"
}Returns Examples
{
"data": {
"category": "category",
"city": "city",
"cityDistrict": "cityDistrict",
"country": "country",
"house": "house",
"houseNumber": "houseNumber",
"island": "island",
"level": "level",
"near": "near",
"poBox": "poBox",
"postcode": "postcode",
"road": "road",
"state": "state",
"stateDistrict": "stateDistrict",
"suburb": "suburb",
"unit": "unit"
},
"message": "message",
"status": "success"
}