Validate and standardize addresses globally with comprehensive address verification and formatting.
curl -X POST https://api.zipsuite.io/api/address/validate
-H "Authorization: Bearer YOUR_API_KEY"
-H "Content-Type: application/json"
-d '{"address":"123 Main St","city":"New York","state":"NY","zip":"10001"}'
Convert human-readable addresses to precise geographic coordinates (latitude/longitude).
curl -X POST https://api.zipsuite.io/api/address/geocode
-H "Authorization: Bearer YOUR_API_KEY"
-H "Content-Type: application/json"
-d '{"address":"123 Main St, New York, NY 10001"}'
Convert geographic coordinates to the nearest street addresses and location names.
curl -X POST https://api.zipsuite.io/api/address/reverse
-H "Authorization: Bearer YOUR_API_KEY"
-H "Content-Type: application/json"
-d '{"latitude":40.7128,"longitude":-74.0060}'
Search for addresses with autocomplete suggestions, powering intelligent address typeahead.
curl -X GET "https://api.zipsuite.io/api/address/search?query=123%20Main%20St"
-H "Authorization: Bearer YOUR_API_KEY"
Lookup detailed postal code information, boundaries, and coverage areas.
curl -X GET "https://api.zipsuite.io/api/address/postal?zip=10001"
-H "Authorization: Bearer YOUR_API_KEY"
Validate multiple addresses in a single request for faster processing at scale.
curl -X POST https://api.zipsuite.io/api/address/batch
-H "Authorization: Bearer YOUR_API_KEY"
-H "Content-Type: application/json"
-d '{"addresses":[{"address":"123 Main St"},{"address":"456 Oak Ave"}]}'
Parse and extract individual address components (street, city, state, ZIP, country, etc.).
curl -X POST https://api.zipsuite.io/api/address/components
-H "Authorization: Bearer YOUR_API_KEY"
-H "Content-Type: application/json"
-d '{"address":"123 Main St, New York, NY 10001"}'
Calculate driving or straight-line distance between two addresses.
curl -X POST https://api.zipsuite.io/api/address/distance
-H "Authorization: Bearer YOUR_API_KEY"
-H "Content-Type: application/json"
-d '{"from":"123 Main St, NY","to":"456 Oak Ave, NY"}'
Find all addresses within a specified radius from a given location.
curl -X POST https://api.zipsuite.io/api/address/proximity
-H "Authorization: Bearer YOUR_API_KEY"
-H "Content-Type: application/json"
-d '{"latitude":40.7128,"longitude":-74.0060,"radius":5}'