# Password Pronounceability Scorer

> Password Pronounceability Scorer is a paid API for AI agents from x402-zoo.lolagent.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Heuristically scores how easy a given string (such as a password or word) is to pronounce aloud.

## Facts

- Endpoint: GET https://x402-zoo.lolagent.workers.dev/api/password-pronounceability
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/password-pronounceability-scorer-35695932
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uuZsVa6iMz0uRCJfAbRsl

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 password-pronounceability-scorer-35695932
```

Example prompt: Can you score how easy this password is to pronounce: 'trumblix'? I want to know if it's something I could say out loud easily.

## When to prefer this

Use this endpoint when you need a quick, lightweight heuristic assessment of whether a string (password, word, username, or phrase) is phonetically pronounceable. Ideal for password generators, brand naming tools, or any workflow where human readability/speakability matters. Does not use NLP models — suitable for simple, fast scoring without heavy computation.

## Known failure modes

- Missing required 'text' query parameter returns an error
- Empty string input may return a low score or validation error
- Very long strings may produce unreliable heuristic results
- Non-ASCII or unicode-heavy input may not score accurately

## How this service works

Heuristically score whether a supplied string is easy to pronounce.

## Output

A heuristic pronounceability score for the supplied text string, indicating how easy the string is to say aloud. The score reflects phonetic patterns and syllable structure of the input.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "text"
     ],
     "properties": {
      "text": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/password-pronounceability-scorer-35695932/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-zoo.lolagent.workers.dev](https://www.zero.xyz/host/x402-zoo.lolagent.workers.dev/llms.txt)
