# CollabraChain Password Generator

> CollabraChain Password Generator is a paid API for AI agents from agent.collabrachain.fun, paid per call via x402, $0.17/call, status down (last checked 2026-09-14).

Generates a secure random password of customizable length between 8 and 100 characters

## Facts

- Endpoint: POST https://agent.collabrachain.fun/api/password/generate
- Price: $0.17/call
- Payment: x402
- Status: down
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-collabrachain-fun-7bd5a549
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4peJEttAuIE8Iagci0ALl

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 agent-collabrachain-fun-7bd5a549 -d '<json body>'
```

Example prompt: Generate a secure random password that's 24 characters long for my new account.

## When to prefer this

Use this endpoint when an agent needs to programmatically generate a secure random password on demand, especially when customizable length (8–100 characters) is required and no local password generation utility is available.

## Known failure modes

- Length below 8 or above 100 returns a validation error
- Missing or malformed request body may return a 400 error
- Payment failure (insufficient USDC balance) results in a 402 error
- Service unavailability returns a 500 error

## How this service works

🔐 Generate secure random passwords! Customize length and complexity. Perfect for creating strong, unique passwords for your accounts and applications!

## Output

Returns a randomly generated secure password string of the specified length (8–100 characters), suitable for use as an account or application credential.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "length": {
   "type": "integer",
   "default": 16,
   "maximum": 100,
   "minimum": 8,
   "description": "Password length (8-100)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-collabrachain-fun-7bd5a549/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent.collabrachain.fun](https://www.zero.xyz/host/agent.collabrachain.fun/llms.txt)
