PasswordGenerator
Pricing
Pay per event
Go to Apify Store
Pricing
Pay per event
Rating
0.0
(0)
Developer

CrawlPilot
Maintained by Community
Actor stats
0
Bookmarked
3
Total users
2
Monthly active users
11 days ago
Last modified
Categories
Share
Secure Password Generator
Generate cryptographically secure passwords — 1 result = 1 password.
Features
- True Randomness:
crypto.randomBytes()— noMath.random() - Custom Length: 4–128 characters
- Flexible Char Sets: Uppercase, lowercase, numbers, symbols
- Avoid Ambiguity: Skip
0/O,1/l,I(optional) - Batch Output: 1 password = 1 dataset item (ideal for export)
- Lightning Fast: <1s per run
Input Schema
{"length": 16,"num_passwords": 5,"include_uppercase": true,"include_lowercase": true,"include_numbers": true,"include_symbols": false,"avoid_ambiguous": true}
| Field | Type | Default | Description |
|---|---|---|---|
length | Integer | 12 | 4–128 |
include_uppercase | Boolean | true | A-Z |
include_lowercase | Boolean | true | a-z |
include_numbers | Boolean | true | 0-9 |
include_symbols | Boolean | true | !@#$ etc. |
num_passwords | Integer | 1 | Max 1,000 |
avoid_ambiguous | Boolean | false | Skip confusing chars |
At least one char set required.
Output (Dataset)
1 password = 1 result → Clean, billable, exportable
{ "password": "XyKpM2qR8vN4jLbC", "length": 16, "config": { ... }, "generated_at": "2025-11-07T06:00:00.000Z" }{ "password": "A7tU3eW5rY9mP2fG", "length": 16, "config": { ... }, "generated_at": "2025-11-07T06:00:00.000Z" }
Export as CSV/JSON → Ready for scripts, DBs, Make.com, n8n, or Zapier.
Use Cases
- Generate API keys, tokens, or user passwords
- Seed test databases
- Automate onboarding
- Integrate with Make.com, Zapier, or scripts
Example Runs
// 3 readable passwords (no symbols, no ambiguity){ "num_passwords": 3, "include_symbols": false, "avoid_ambiguous": true }
Logs:
Generated 3 password(s) of length 12:- AbCdEfGhIjKl- MnOpQrStUvWx- YzAbCdEfGhIj
Troubleshooting
- "Char set" error → Enable at least one character type
- Length clamped → Input outside 4–128 is adjusted
- No dataset? → Check logs for generated passwords
Built With
- Apify SDK
- Node.js
crypto - Love from India
License
MIT © 2025 CrawlPilot