# x402.outpimp.com Secure Password Generator

> x402.outpimp.com Secure Password Generator is a paid API for AI agents from x402.outpimp.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Generates a cryptographically random password with configurable length, character classes, and an optional pronounceable mode

## Facts

- Endpoint: POST https://x402.outpimp.com/generatePassword
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-outpimp-com-secure-password-generator-1807c545
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TIyBNvkW3dniLl9T5z-3T

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability x402-outpimp-com-secure-password-generator-1807c545 -d '<json body>'
```

Example prompt: Generate a cryptographically secure 24-character password that includes uppercase letters, lowercase letters, numbers, and symbols — I need something truly random for a new admin account.

## When to prefer this

Choose this endpoint when you need a truly cryptographically random password that an LLM cannot reliably produce on its own. Unlike asking an AI to 'make up' a password (which introduces predictability and bias), this endpoint uses a secure random source. Prefer it for security-sensitive contexts: admin credentials, vault keys, temporary account passwords, or any scenario where unpredictability is essential. The pronounceable mode is a standout feature for human-readable temporary passwords.

## Known failure modes

- HTTP 400 if constraints cannot be satisfied (e.g. length too short to include all required character classes)
- HTTP 400 if length is outside the 8-128 range
- Payment failure if USDC balance is insufficient for the $0.01 per-call fee
- Network timeout if the service is temporarily unavailable

## How this service works

Secure password generator API. Generates a cryptographically random password — true randomness an LLM cannot produce on its own. Accepts optional length (8-128), per-character-class toggles (uppercase/lowercase/numbers/symbols) with guaranteed inclusion, and a pronounceable easy-to-say mode.

## Output

Returns a cryptographically random password string satisfying the requested constraints. The response includes the generated password. Returns HTTP 400 if the combination of constraints cannot be satisfied (e.g. requesting a pronounceable password with symbols on a very short length).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "length": {
   "type": "integer",
   "default": 16,
   "maximum": 128,
   "minimum": 8,
   "description": "Desired password length. Defaults to 16."
  },
  "pronounceable": {
   "type": "boolean",
   "default": false,
   "description": "Generate an easy-to-say alternating consonant/vowel password instead. Defaults to false."
  },
  "includeNumbers": {
   "type": "boolean",
   "default": true,
   "description": "Include digits. Defaults to true."
  },
  "includeSymbols": {
   "type": "boolean",
   "default": true,
   "description": "Include symbols. Defaults to true."
  },
  "includeLowercase": {
   "type": "boolean",
   "default": true,
   "description": "Include lowercase letters. Defaults to true."
  },
  "includeUppercase": {
   "type": "boolean",
   "default": true,
   "description": "Include uppercase letters. Defaults to true."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-outpimp-com-secure-password-generator-1807c545/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.outpimp.com](https://www.zero.xyz/host/x402.outpimp.com/llms.txt)
