📍 Address & Search APIs

Find, validate, and search addresses globally with our comprehensive address intelligence platform. Get geocoding, reverse geocoding, autocomplete, distance calculation, and more.

Address Validation

Validate and standardize addresses globally with comprehensive address verification and formatting.

POST /api/address/validate
Description
Validate and standardize addresses globally
Quick Tips
  • Use your bearer token in headers
  • Check response format below
  • Test with our API demo tab
cURL Example
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"}'

Geocoding

Convert human-readable addresses to precise geographic coordinates (latitude/longitude).

POST /api/address/geocode
Description
Convert addresses to geographic coordinates
Quick Tips
  • Use your bearer token in headers
  • Check response format below
  • Test with our API demo tab
cURL Example
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"}'

Reverse Geocoding

Convert geographic coordinates to the nearest street addresses and location names.

POST /api/address/reverse
Description
Convert coordinates to nearest addresses
Quick Tips
  • Use your bearer token in headers
  • Check response format below
  • Test with our API demo tab
cURL Example
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}'

Address Search

Search for addresses with autocomplete suggestions, powering intelligent address typeahead.

GET /api/address/search
Description
Search addresses with autocomplete
Quick Tips
  • Use your bearer token in headers
  • Check response format below
  • Test with our API demo tab
cURL Example
curl -X GET "https://api.zipsuite.io/api/address/search?query=123%20Main%20St" 
  -H "Authorization: Bearer YOUR_API_KEY"

Postal Code Lookup

Lookup detailed postal code information, boundaries, and coverage areas.

GET /api/address/postal
Description
Lookup postal code information and boundaries
Quick Tips
  • Use your bearer token in headers
  • Check response format below
  • Test with our API demo tab
cURL Example
curl -X GET "https://api.zipsuite.io/api/address/postal?zip=10001" 
  -H "Authorization: Bearer YOUR_API_KEY"

Batch Validation

Validate multiple addresses in a single request for faster processing at scale.

POST /api/address/batch
Description
Validate multiple addresses at once
Quick Tips
  • Use your bearer token in headers
  • Check response format below
  • Test with our API demo tab
cURL Example
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"}]}'

Address Components

Parse and extract individual address components (street, city, state, ZIP, country, etc.).

POST /api/address/components
Description
Parse address into individual components
Quick Tips
  • Use your bearer token in headers
  • Check response format below
  • Test with our API demo tab
cURL Example
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"}'

Distance Calculation

Calculate driving or straight-line distance between two addresses.

POST /api/address/distance
Description
Calculate distance between two addresses
Quick Tips
  • Use your bearer token in headers
  • Check response format below
  • Test with our API demo tab
cURL Example
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"}'

Proximity Search

Find all addresses within a specified radius from a given location.

POST /api/address/proximity
Description
Find addresses within a radius
Quick Tips
  • Use your bearer token in headers
  • Check response format below
  • Test with our API demo tab
cURL Example
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}'