Validate and standardize addresses
Comprehensive address intelligence for shipping, verification, and location services. USPS-certified validation, international support, and real-time autocomplete.
USPS-certified address validation. Verify deliverability and get standardized formats.
POST /api/v1/address/validate
{ "street": "123 Main St",
"city": "New York",
"state": "NY", "zip": "10001" }
// Response
{ "valid": true, "deliverable": true,
"standardized": {
"street": "123 MAIN ST",
"zip": "10001-1234" } }
Real-time address suggestions as users type. Reduce errors and improve UX.
GET /api/v1/address/autocomplete
?query=123+Main&country=US
// Response
{ "suggestions": [
{ "text": "123 Main St, New York, NY",
"place_id": "..." },
{ "text": "123 Main Ave, Brooklyn, NY",
"place_id": "..." }
] }
Convert addresses to coordinates and vice versa. Forward and reverse geocoding.
POST /api/v1/address/geocode
{ "address": "123 Main St, New York, NY" }
// Response
{ "latitude": 40.7128,
"longitude": -74.0060,
"accuracy": "rooftop",
"timezone": "America/New_York" }
Get city, state, timezone, and demographic data from postal codes.
GET /api/v1/address/zipcode/10001
// Response
{ "zip": "10001",
"city": "New York",
"state": "NY",
"county": "New York",
"timezone": "America/New_York" }
Parse free-form addresses into structured components. Handle messy user input.
POST /api/v1/address/parse
{ "address": "123 Main St Apt 4B NYC 10001" }
// Response
{ "street_number": "123",
"street_name": "Main St",
"unit": "Apt 4B",
"city": "New York",
"state": "NY", "zip": "10001" }
Get your API key and start verifying addresses in minutes.