# Fake Address Generator

> Plausible postal addresses for test forms and demos. Per-country formats (US, UK, DE, FR, CA, JP, AU).

- URL: https://generate.now/address
- Category: identity
- Price: free, no account required
- AI-powered: no
- Last updated: 2026-08-27

## What it does

Generate realistic-looking but fully fictional addresses. Per-country formatting handles things like postcode layout, region/state codes, and street naming conventions. Use for form QA, demo seeds, and screenshots — these never resolve to real residences.

## When to use it

- QA a shipping address form with realistic per-country input
- Seed an admin user table with plausible addresses
- Mock an order confirmation screen for a demo
- Test postcode validation across multiple country formats

## Examples

### 1 × US address

```
482 Maple Street, Apt 3B, Portland, OR 97214
```

US format: street + city + state + ZIP.

### 3 × UK addresses

```
14 Birch Lane, Bristol, BS1 4HQ\n8 Park Crescent, Leeds, LS2 9JT\n...
```

UK format: street + town + county + postcode.

### 1 × German address

```
Lindenstraße 47, 10969 Berlin, Germany
```

Postcode precedes the city, and the house number follows the street name.

### 1 × Japanese address

```
〒150-0043 東京都渋谷区道玄坂2-11-1
```

Ordered largest unit first — prefecture, ward, district, block — with no street name.

## Frequently asked questions

### Are these real addresses?

No. Street numbers, names, and postcodes are recombined from realistic patterns — they're statistically plausible but don't correspond to real locations. Don't expect mail sent to them to arrive.

### Do the postcodes validate?

They follow each country's postcode format (e.g. UK two-part, US 5-digit) and will pass most regex-based validators. They won't pass real lookup services like Royal Mail's PAF or USPS.

### Can I use these to test an address validation API?

They'll pass format checks and fail verification, which is usually what you want from a test. Services that check against a real postal database — USPS, Loqate, Google's Address Validation — will report the address as not found. Use your provider's sandbox keys if you need a verified result.

### Why do address forms break outside the US?

Because they assume a shape that isn't universal. Not every country has states, not every country has postcodes, house numbers come after the street name in some places and before it in others, and Japan orders things largest-unit-first. A required State field is the single most common way to lock out an international customer.

### What's the safest schema for storing an address?

Two or three free-text lines, a locality, an optional region, an optional postal code, and a required ISO 3166 country code. Validate the postal code's format per country only if you have to, and never make region mandatory. You can always parse later; you can't recover what the form refused to accept.

### Could a generated address match a real one by chance?

It's possible — street names and numbers are recombined from realistic components, so a collision isn't impossible in a dense city. Treat them as format-valid fixtures rather than guaranteed-fictional, and never use them anywhere something might physically be sent.

## References

- [Publication 28: Postal Addressing Standards](https://pe.usps.com/text/pub28/welcome.htm) — USPS. The normative format for US street addresses, including abbreviations and ZIP+4.
- [Addressing solutions](https://www.upu.int/en/postal-solutions/programmes-and-services/addressing-solutions) — Universal Postal Union. How address structure varies between countries, and why one schema rarely fits all.

## Related tools

- [Fake Phone Number Generator](https://generate.now/phone): Plausible phone numbers in the officially-reserved test ranges. Per-country formats. Never dial a real line.
- [Fake Name Generator](https://generate.now/name): Realistic-looking but fully fake person names. Filters for origin, gender, and format — first, last, full.
- [Test Credit Card Generator](https://generate.now/credit-card): Stripe-style test card numbers — successful charges, declines, 3DS challenges. Valid Luhn, never charges.
