Skip to content
faker.tools
All 79

Plate I · User & Personal Identity Generators

Random Address Generator

Street, city, region and postal codes that match their country's format.

#StreetCityRegionPostal CodeCountryCountry Code
18778 Tannery CloseBrooklynNew York11272United StatesUS
27266 Juniper PlaceChicagoIllinois60602United StatesUS
3869 Sycamore WalkBoiseIdaho83772United StatesUS
47924 Hawthorn LaneSavannahGeorgia31439United StatesUS
52473 Laurel RowAustinTexas75451United StatesUS
63199 Maple LaneAustinTexas79419United StatesUS
71400 Willow RowSavannahGeorgia31400United StatesUS
81124 Birch PlaceSavannahGeorgia31487United StatesUS
9657 Laurel PlaceDenverColorado80185United StatesUS
102344 Kiln LanePortlandOregon97901United StatesUS
10 rows · 1.1 KBGenerated in your browser · Random Address Generator

Postal codes are where address forms break. A field that accepts 94103 will happily reject M15 4FN, 75008 and 810-0001, and you usually find out from a support ticket. Each address here is built to its own country's format, including the postal pattern.

What you can control

  • Postal codes follow the real shape for each country — five digits in the US and France, alphanumeric in the UK, hyphenated in Japan and Brazil.
  • Add a secondary line (apartment, suite, unit) to check that your form and your label printer both survive it.
  • Coordinates land within a few kilometres of the named city, so map pins cluster where they should.
  • Switch between separate columns and a single formatted line depending on whether you are seeding a database or filling a text field.

What this is not

Street numbers and names are generated, so the addresses are structurally valid but not deliverable. Cities, regions and coordinates are real places; the buildings are not.

Questions

Will these addresses pass validation?

Format validation, yes — the postal code, region code and country line up. Deliverability checks against a postal database will reject them, which is the intended behaviour for test data.

Can I generate addresses for one country only?

Yes. The locale control filters both the name style and the address format, so choosing de_DE gives you German cities with five-digit postal codes.

How accurate are the coordinates?

They are the real city centre plus up to about 0.09 degrees of jitter — accurate enough for clustering and map rendering, not for routing.

Next in Identity

All 12