GET /generate/password
Genere a cryptographically secure random password with configurable length (default 16 characters). Incluye uppercase, lowercase, numbers, and special characters for maximum strength. Útil para password manager apps, account creation flows, security tools, and any feature where users need help creating strong passwords. Never reuses or stores generated passwords.
length
opcional
predeterminado: 16
Length
| Nombre | Requerido | Predeterminado | Descripcion |
|---|---|---|---|
length |
No | 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^*hUU1NygSWft1sulOD",
"strength": "very_strong"
},
"success": true
}