Skip to content

Password Generator API.

This API creates secure passwords. Unlike standard random generators, this API uses high-entropy randomness suitable for production security keys and user credentials.

POST /api/v1/password-generator

The following parameters are accepted in the request body:

FieldTypeRequiredDescription
lengthnumberOptionalLength of the password (Min: 4, Max: 128, Default: 16).
uppercasebooleanOptionalInclude A-Z? (Default: true).
numbersbooleanOptionalInclude 0-9? (Default: true).
symbolsbooleanOptionalInclude !@#$%…? (Default: true).
Terminal window
curl -X POST https://heavstal.com.ng/api/v1/password-generator \
-H "Content-Type: application/json" \
-H "x-api-key: <YOUR_API_KEY>" \
-d '{"length": 24, "symbols": false}'
{
"status": "success",
"creator": "HEAVSTAL TECH",
"data": {
"password": "x9L2mP5q...",
"length": 24,
"entropy_bits": 142
}
}