Random Address Generator
Generate fake street addresses for mock data.
Overview
The Random Address Generator produces plausible-looking but clearly fake street addresses — house number, street name, city, region and postal code — for use as mock data in seed files, screenshots and form-validation tests. The output respects the format of the chosen country so a UK address has a postcode like SW1A 1AA and a US address has a five-digit ZIP.
The generator is aimed at QA engineers seeding staging environments, designers building address-rich UI mockups, e-commerce developers testing shipping flows and educators teaching geocoding. Long-tail searches like "fake street address generator with postcode", "mock shipping address for testing" and "random US address with valid zip format" all resolve here.
How it works
Each country has its own templated address structure: house number, optional sub-building, street, locality, region and postal code. The tool samples each field from a curated pool — common street suffixes (Street, Avenue, Lane, Road), realistic city names drawn from public gazetteers and well-formed postal codes that match the country's regular expression. Combinations are intentionally improbable, so although the postcode is shape-correct it will rarely map to the actual city named.
Sampling uses the OS cryptographic random source, so addresses are independent and re-runs produce fresh results. The tool never queries a mapping service or geocoder, which keeps it offline-safe and avoids any chance of returning a real residence.
Examples
US → 4421 Maple Avenue · Springfield, IL 62704
UK → 17 King Street · Cambridge, CB2 1AB
DE → Hauptstraße 42 · 10115 Berlin
CA → 88 Yonge Street · Toronto, ON M5E 1W7
FAQ
Are any of these real addresses?
The street and city pools come from common public names, so coincidental matches are possible. The postcodes are shape-correct but rarely align with the city, which makes most outputs not deliverable.
Which countries are supported?
The generator covers US, UK, Canada, Germany, France, Netherlands, Australia and Japan, with country-specific format rules for each.
Will the postcodes pass form validation?
Yes — they match the regex format used by typical address forms. They may not match a real delivery point.
Can I batch-generate for a CSV?
Yes. Set the count and switch the output to CSV; the tool emits a header row plus N records.
Is this safe for screenshots?
Yes. The values are explicitly mock data with no link to any real customer, which makes them safe to share publicly.