Catalog/util-password

Utilities

Generate passwords API

Generate strong random passwords with configurable length, count, and character classes (symbols, numbers, case), optionally excluding look-alike characters. Answers 'generate a strong password', 'make me 5 secure passwords'.

Price$0.01per request
MethodPOST
Route/v1/util/password
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
utilpasswordgeneraterandomsecurecredentials
API URLhttps://x402.hexl.dev/v1/util/password
Integration docs
Example request
{
  "length": 20,
  "count": 2,
  "symbols": true
}
Example response
{
  "passwords": [
    "k7$Rm2!pQ9xLz#Wv4nB1",
    "Hd3@yT8&uF6sP0!cMqW2"
  ]
}
Input schema
{
  "type": "object",
  "properties": {
    "length": {
      "type": "number",
      "default": 16
    },
    "count": {
      "type": "number",
      "default": 1
    },
    "symbols": {
      "type": "boolean",
      "default": false
    },
    "numbers": {
      "type": "boolean",
      "default": true
    },
    "uppercase": {
      "type": "boolean",
      "default": true
    },
    "lowercase": {
      "type": "boolean",
      "default": true
    },
    "excludeSimilar": {
      "type": "boolean",
      "default": false
    }
  }
}
Output schema
{
  "type": "object",
  "required": [
    "passwords"
  ],
  "properties": {
    "passwords": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}