A fake Brazilian address generator produces correctly formatted addresses for Brazil, following the local convention of logradouro with número, bairro, cidade and UF, and an eight-digit CEP whose first digit identifies the postal region. It is meant for developers and testers exercising Brazilian e-commerce, shipping, and PIX payment flows.
How it works
The generator keeps the region, cidade, and state consistent:
- A cidade is chosen, each paired with its two-letter UF state code and the leading CEP digit Correios uses for its region.
- A logradouro (Rua, Avenida, Travessa, and so on) and name are picked, with a número and an occasional
Aptocomplement. - A bairro is selected, and the cidade - UF line is formed.
- A CEP is built in
NNNNN-NNNformat: the first digit comes from the region (0/1São Paulo,2Rio de Janeiro,3Minas Gerais,8Paraná,9Rio Grande do Sul), with the remaining digits random.
Tips and notes
- The leading CEP digit is region-correct, satisfying the most common regional and length checks; the full code is not tied to a specific street.
- An
Aptocomplement appears on many addresses, mirroring real Brazilian apartment addressing. - Generate a batch for seeding databases or import tests; everything runs locally with no network access.