GET /generate/password
Generate a cryptographically secure random password with configurable length (default 16 characters). Includes uppercase, lowercase, numbers, and special characters for maximum strength. Useful for 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
optional
default: 16
Length
| Name | Required | Default | Description |
|---|---|---|---|
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": "anrjBvUtWQ9NDCfB6c#F",
"strength": "very_strong"
},
"success": true
}