GET /generate/password
Genereerige a cryptographically secure random password with configurable length (default 16 characters). Sisaldab uppercase, lowercase, numbers, and special characters for maximum strength. Kasulik 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
valikuline
vaikeväärtus: 16
Length
| Nimi | Kohustuslik | Vaikeväärtus | Kirjeldus |
|---|---|---|---|
length |
Ei | 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": "JKJCVvAoy36Dl5$X%r@8",
"strength": "very_strong"
},
"success": true
}