GET /generate/password
Generieren Sie eine cryptographically secure random password with configurable length (default 16 characters). Enthält uppercase, lowercase, numbers, und special characters for maximum strength. Nützlich für password manager apps, account creation flows, security tools, und any feature where users need help creating strong passwords. Never reuses oder stores generated passwords.
length
optional
Standard: 16
Length
| Name | Erforderlich | Standard | Beschreibung |
|---|---|---|---|
length |
Nein | 16 | Length |
curl "https://nordapi.ee/api/v1/generate/password?length=20"
curl "https://nordapi.ee/api/v1/generate/password"
curl "https://nordapi.ee/api/v1/generate/password?length=32"
curl "https://nordapi.ee/api/v1/generate/password?length=20"
{
"data": {
"length": 20,
"password": "1#3T6SR$q2@j#&21fAz@",
"strength": "very_strong"
},
"success": true
}