Random U.S. Address Generator
Generate Random U.S. Addresses
Create U.S.-style test data with a local name, phone number, street, city, state, and ZIP Code.
Generator
Settings
Results include local-looking names, phone numbers, street addresses, unit lines, PO Boxes, rural routes, state abbreviations, and five-digit ZIP Codes. They are not guaranteed to be deliverable addresses.
Results
Address List
Use Cases
Use the generated data for form QA, product prototypes, demo datasets, CSV imports, and localization testing.
Data Boundaries
Generated addresses are test data. Do not use them for real shipping, identity impersonation, or misleading account creation.
Other Countries
You can also generate Japanese and UK address samples from the country hub.
View all countriesU.S. field map and QA checks
| Field | Typical value | What to test |
|---|---|---|
| Address Line 1 | House number, street name, suffix | Store as text; numbers can contain hyphens |
| Address Line 2 | Apt, Suite, or Unit | Allow blank values and alphanumeric unit identifiers |
| City / State | City plus two-letter abbreviation | Do not infer state solely from free text |
| ZIP Code | Five digits; some flows accept ZIP+4 | Preserve leading zeros and the ZIP+4 hyphen |
Example layout
Jordan Lee455 Market Street, Apt 8B
Philadelphia, PA 19106
United States
Name and phone are separate test fields and do not prove that an address is deliverable.
Useful negative cases
- A CSV import removes the leading zero from 02108.
- The validator requires ZIP+4 and rejects five digits.
- An empty second line leaves an extra comma.
- A city containing spaces is split into multiple fields.
Format-variant regression set
| Variant | Example | Pass condition |
|---|---|---|
| Street with unit | 455 Market Street, Apt 8B | The unit remains optional and is not merged into the city. |
| PO Box | PO Box 248 | The workflow accepts a non-street delivery line when permitted. |
| Rural route | RR 2 Box 115 | Letters and multiple number groups survive validation. |
| ZIP with leading zero | Boston, MA 02108 | The postal value remains a five-character string. |
| ZIP+4 | 10001-1234 | The hyphen and four-digit extension survive export. |
Keep stable examples for regression testing instead of relying only on newly randomized output. Compare the exact submitted, stored, displayed, and exported strings. Plausible formatting does not confirm a USPS delivery point or a relationship between the generated person, phone number, and address.
Reference: USPS Publication 28. This generator does not perform USPS address validation.