A fake Australian address generator creates correctly structured addresses for Australia’s six states and two territories. It is aimed at engineers and QA teams testing APAC commerce flows who need realistic-looking address data without touching anyone’s real details.
How it works
Each address is assembled to keep the state, suburb, and postcode internally consistent:
- A state or territory is chosen (NSW, VIC, QLD, WA, SA, TAS, ACT, or NT), each with its two- or three-letter abbreviation.
- A suburb is drawn from that state’s list.
- A street number plus a street name and an Australian-style suffix such as
St,Rd, orPdeare generated. - A postcode is selected from the four-digit range allocated to that state. Australia Post assigns leading digits by region —
2xxxfor NSW,3xxxfor VIC,4xxxfor QLD,5xxxfor SA,6xxxfor WA,7xxxfor TAS, and0xxx/2600sfor the territories — so the generated code always sits in the right block.
Tips and notes
- Postcodes are range-valid rather than tied to a named locality, which is exactly what most format and range validators check.
- Generate a batch to seed a test database or to drive a CSV import test in one pass.
- Re-run as often as you like for fresh, non-repeating fixtures, with zero network calls.