Password Generator Actor
Pricing
Pay per usage
Go to Apify Store
Pricing
Pay per usage
Rating
0.0
(0)
Developer

Patrik Dvořáček
Maintained by Community
Actor stats
0
Bookmarked
3
Total users
2
Monthly active users
4 days ago
Last modified
Categories
Share
The Password Generator Actor is a simple actor for generating random passwords. The actor is just a wrapper around the passwords Rust crate.
The generator is pre-made for generating multiple passwords at once. However, it is possible to create a single password as well by setting count to 1.
Input Parameters
| Parameters | Type | Required | Description |
|---|---|---|---|
count | number | Yes | The number of passwords to create |
length | number | Yes | The length of the password. Must be between 8 and 128 |
allow_numbers | bool | No | Include numbers in the password |
allow_lowercase_letters | bool | No | Include lowercase letters in the password |
allow_uppercase_letters | bool | No | Include uppercase letters in the password |
symbols | bool | No | Include symbols such as *, # or $ in the password |
spaces | bool | No | Include spaces in the password |
exclude_similar_characters | bool | No | Exclude visually similar characters such as 1 (one) and l (L) from appearing in the password at the same time |
Output Format
The output is a JSON array of strings. Each string represents a single password.