Password Generator
Create strong, truly random passwords using a cryptographic source — free, nothing stored.
How it works
- Set length. Choose a length (16+ is a good baseline) and how many passwords to create.
- Choose character types. Tick lowercase, uppercase, digits and symbols to match the site’s rules.
- Generate. Press Generate and copy any password — they are made with a cryptographic random source.
About this tool
Generate strong, random passwords with the character types you choose — lowercase, uppercase, digits and symbols — at any length from 4 to 128. Every password is produced with Python's cryptographic secrets module, which is designed for security rather than the predictable output of a normal random function. You can create up to 50 at once, which is handy when setting up several accounts. Nothing is logged or stored — the passwords exist only on the page you're looking at.
What people use it for
- Make a unique password for a new account
- Generate a batch of logins for a team or family
- Create a strong Wi-Fi or router password
- Replace a weak reused password with a random one
Developer API
Automate this tool from your own code. Send a POST request to the endpoint below and get the same result the web tool produces. It is rate-limited per IP and needs no signup — API keys for higher limits are coming.
https://best.free/api/tools/password-generator/
| Parameter | Example | Required | Notes |
|---|---|---|---|
length |
20 |
No | 4–128. |
count |
5 |
No | 1–50 passwords. |
upper |
True |
No | Include A–Z. |
lower |
True |
No | Include a–z. |
digits |
True |
No | Include 0–9. |
symbols |
True |
No | Include punctuation. |
curl -X POST https://best.free/api/tools/password-generator/ \
-H 'Content-Type: application/json' \
-d '{"length": 20, "count": 5, "upper": true, "lower": true, "digits": true, "symbols": true}'
import requests
r = requests.post(
"https://best.free/api/tools/password-generator/",
json={"length": 20, "count": 5, "upper": True, "lower": True, "digits": True, "symbols": True},
)
print(r.json())
const r = await fetch("https://best.free/api/tools/password-generator/", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ length: 20, count: 5, upper: true, lower: true, digits: true, symbols: true }),
});
const data = await r.json();
console.log(data);
Response: JSON array of generated passwords.
{"ok": true, "passwords": ["xT9$km…", "…"]}