Random Generators

יוצר סיסמאות

צור סיסמאות מאובטחות עם קריטריונים מותאמים אישית להגנה מקסימלית

הגדרות סיסמה
התאם אישית את ייצור הסיסמה שלך
חזק
סיסמאות שנוצרו
צור סיסמאות מאובטחות

לא נוצרו סיסמאות עדיין. הגדר הגדרות וצור!

Security Tips

Password Best Practices:

  • • Use unique passwords for each account
  • • Enable two-factor authentication when possible
  • • Store passwords in a secure password manager

Strength Guidelines:

  • • Minimum 12 characters for good security
  • • Include multiple character types
  • • Avoid dictionary words and personal info
API Documentation
Generate secure passwords programmatically
GET/a/v1/passwords

Generate secure passwords with customizable options

Parameters:

length (integer, 4-128): Password length (default: 12)
count (integer, 1-50): Number of passwords (default: 1)
uppercase (boolean): Include uppercase letters (default: true)
lowercase (boolean): Include lowercase letters (default: true)
numbers (boolean): Include numbers (default: true)
symbols (boolean): Include symbols (default: true)
exclude_ambiguous (boolean): Exclude ambiguous characters (default: false)

Example Request:

curl -H "Authorization: Bearer YOUR_API_KEY" \
  "https://random-generators.com/a/v1/passwords?length=16&count=5&symbols=false"

Example Response:

{ "success": true, "data": [ "K8mN2pQ7rT9vW3xZ", "F5hJ8kL1nP4sV6yB", "D7gM9qR2uX5zA8cE" ], "options": { "length": 16, "uppercase": true, "lowercase": true, "numbers": true, "symbols": false }, "credits_used": 1 }