ToolAssay

Generate a secure random password (characters) or a wordlist passphrase

Generate a secure random password (characters) or a wordlist passphrase.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
605 msmedian answer time
$0.002listed price per call
$0.002price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://password.openverbs.com/v1/generate

CategoryEverything else
Provider hostpassword.openverbs.com
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days5 from 3 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.002 605 ms

Example input (from the provider)

{
  "body": {
    "length": 4,
    "mode": "chars"
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "additionalProperties": false,
          "properties": {
            "capitalize": {
              "description": "passphrase mode: capitalize each word. Defaults to false.",
              "type": "boolean"
            },
            "digits": {
              "description": "chars mode: include 0-9. Defaults to true.",
              "type": "boolean"
            },
            "excludeAmbiguous": {
              "description": "chars mode: drop look-alike characters (i l 1 L o 0 O). Defaults to false.",
              "type": "boolean"
            },
            "length": {
              "description": "chars mode: password length. Defaults to 20.",
              "maximum": 256,
              "minimum": 4,
              "type": "integer"
            },
            "lowercase": {
              "description": "chars mode: include a-z. Defaults to true.",
              "type": "boolean"
            },
            "mode": {
              "description": "Generation mode. Defaults to chars.",
              "enum": [
                "chars",
                "passphrase"
              ],
              "type": "string"
            },
            "separator": {
              "description": "passphrase mode: word separator. Defaults to \"-\".",
              "maxLength": 8,
              "type": "string"
            },
            "symbols": {
              "description": "chars mode: include punctuation. Defaults to false.",
              "type": "boolean"
            },
            "uppercase": {
              "description": "chars mode: include A-Z. Defaults to true.",
              "type": "boolean"
            },
            "words": {
              "description": "passphrase mode: number of words. Defaults to 5.",
              "maximum": 20,
              "minimum": 2,
              "type": "integer"
            }
          },
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON