Optional secondary address line (e.g., Apt, Suite, Unit, Floor).
ShipSaving Legacy API (v1)
Request
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
2-letter code for origin country. This field’s value will be an ISO 3166-1 two-digit code.
Example: "US"
- Production serverhttps://api.shipsaving.com/api/addresses/verify
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
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
application/json
{ "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": [ { … } ] }