Random Canada Address Generator
Generate realistic random Canadian addresses with valid postal codes, real city names, and proper province formatting. Bulk generate up to 50 addresses.
About
Canadian addresses follow a strict format mandated by Canada Post: street number, street name with suffix, city, two-letter province code, and a six-character alphanumeric postal code in A0A 0A0 pattern. The first character of the Forward Sortation Area (FSA) is province-specific. Using an incorrect FSA letter for a province will cause mail rejection and database validation failures. This generator produces addresses with algorithmically correct postal code prefixes mapped to each of the 13 provinces and territories, drawn from pools of real Canadian city names and common street names. Addresses are suitable for software testing, form validation, UI mockups, and database seeding. They are not real occupied addresses and should not be used for fraud or impersonation.
Formulas
Canadian postal codes consist of two segments: the Forward Sortation Area (FSA) and the Local Delivery Unit (LDU), separated by a single space.
Where:
Where L1 is constrained to province-specific letters (e.g., L1 ∈ {K, L, M, N, P} for Ontario). Letters L2 and L3 are drawn from the set A = {A…Z} − {D, F, I, O, Q, U}, per Canada Post regulations. D1, D2, D3 ∈ {0…9}. The street number N is generated as a weighted random integer where N ∈ [1, 19999] with probability skewed toward N < 5000 for realism. Apartment numbers appear with probability p ≈ 0.15.
Reference Data
| Province / Territory | Code | Postal Prefix Letters | Capital City | Example Postal Code |
|---|---|---|---|---|
| Alberta | AB | T | Edmonton | T5J 2N9 |
| British Columbia | BC | V | Victoria | V8W 1P6 |
| Manitoba | MB | R | Winnipeg | R3C 4A5 |
| New Brunswick | NB | E | Fredericton | E3B 5H1 |
| Newfoundland and Labrador | NL | A | St. John's | A1C 5S7 |
| Northwest Territories | NT | X | Yellowknife | X1A 2N2 |
| Nova Scotia | NS | B | Halifax | B3H 4R2 |
| Nunavut | NU | X | Iqaluit | X0A 0H0 |
| Ontario | ON | K, L, M, N, P | Toronto | M5V 3L9 |
| Prince Edward Island | PE | C | Charlottetown | C1A 7N8 |
| Quebec | QC | G, H, J | Quebec City | H2X 1Y4 |
| Saskatchewan | SK | S | Regina | S4P 3Y2 |
| Yukon | YT | Y | Whitehorse | Y1A 2C6 |