Verifies and standardizes an address based on the provided details. This API checks for errors and returns suggestions or corrections.
Rate limit: 600 requests per minute.
Security
ApiTokenAuth
Optional secondary address line (e.g., Apt, Suite, Unit, Floor).
Example:"Apt 5B"
2-letter code for origin country. This field’s value will be an ISO 3166-1 two-digit code.
Example:"US"
POST
curl -i -X POST \
'https://api.shipsaving.com/api/addresses/verify?api_token=YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"street": "xxx Grand Avenue",
"street2": "Apt 5B",
"city": "Los Angeles",
"state": "CA",
"zip": "90006",
"country": "US"
}'Address verification result
Optional secondary address line (e.g., Apt, Suite, Unit, Floor).
Example:"Apt 5B"
2-letter code for origin country. This field’s value will be an ISO 3166-1 two-digit code.
Example:"US"
Response
{ "street": "xxx Grand Avenue", "street2": "Apt 5B", "city": "Los Angeles", "state": "CA", "zip": "90006", "country": "US", "residential": true, "errored": true, "corrected": true, "standardized": true, "errors": [ { … } ], "corrections": [ { … } ] }