API Catalog Address APIs

Address APIs

Validate and standardize addresses

Comprehensive address intelligence for shipping, verification, and location services. USPS-certified validation, international support, and real-time autocomplete.

Address Validation

Popular

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" } }
USPS Certified Deliverability ZIP+4

Address Autocomplete

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": "..." }
] }
Real-Time Type-Ahead Global

Geocoding

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" }
Forward Reverse Rooftop

Postal Code Lookup

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" }
City/State Timezone Demographics

Address Parse

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" }
Free-Form Components Normalization

Ready to validate addresses?

Get your API key and start verifying addresses in minutes.