Address Verification
Address Verification standardizes and validates addresses, returning a canonical form plus geocoding. Each call accepts up to 100 addresses, so it scales to bulk list hygiene.
POST/v2/AddressVerification
Verify addresses
Request attributes
- Name
addresses- Type
- array
- Description
Up to 100 address objects to verify. Required.
- Name
key- Type
- string
- Description
Your own identifier for an address, echoed back so you can join results to inputs.
- Name
address- Type
- string
- Description
A fully formatted address to verify.
- Name
street- Type
- string
- Description
Street line, when supplying address parts instead.
- Name
city- Type
- string
- Description
City.
- Name
state- Type
- string
- Description
Two-character state code.
- Name
zip- Type
- string
- Description
Five-digit ZIP code.
- Name
strict- Type
- boolean
- Description
Reject near-matches instead of correcting them.
Request
POST
/v2/AddressVerificationcurl -X POST https://api.realestateapi.com/v2/AddressVerification \
-H "x-api-key: $REALESTATEAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"addresses": [{"key": "1", "address": "1 Rocket Rd, Hawthorne, CA 90250"}]}'
The full response schema for this endpoint — every field and enum — lives in the canonical reference. That content has not been ported to this site yet.