← Developer Utilities

Password Generator

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.

Parameters

length optional default: 16

Length

Example Requests

Basic usage
curl "https://nordapi.ee/api/v1/generate/password?length=20"
Generate a 16-character password (default)
curl "https://nordapi.ee/api/v1/generate/password"
Generate a 32-character password
curl "https://nordapi.ee/api/v1/generate/password?length=32"
Generate a 20-character password
curl "https://nordapi.ee/api/v1/generate/password?length=20"

Live Response

{
  "data": {
    "length": 20,
    "password": "anrjBvUtWQ9NDCfB6c#F",
    "strength": "very_strong"
  },
  "success": true
}