# DataVault Password Generator

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

Generates one or more random passwords with configurable length and character set options

## Facts

- Endpoint: POST https://zetavault.vercel.app/api/password
- 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/datavault-password-generator-a5b9fb9e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZHe1hXfYewgaf9AHmLYUU

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 datavault-password-generator-a5b9fb9e -d '<json body>'
```

Example prompt: Generate 5 random passwords for me, each 20 characters long, with uppercase letters, lowercase letters, numbers, and symbols all included.

## When to prefer this

Use this endpoint when you need programmatically generated, configurable random passwords on demand without storing credentials anywhere — ideal for bulk password generation with fine-grained control over character composition and length.

## Known failure modes

- Invalid count or length values (non-integer or out-of-range) return an error
- All character type flags set to false may return an error or empty result
- Missing required fields may cause a 400 bad request
- Payment failure via x402 protocol returns 402 Payment Required

## How this service works

54 endpoints spanning local tools, live data feeds, and AI-powered text processing. Pay-per-call with USDC on Base.

## Output

Returns a JSON object with a success boolean and a data object containing the generated password(s) matching the requested configuration of length and character types.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "count": {
   "type": "integer"
  },
  "length": {
   "type": "integer"
  },
  "numbers": {
   "type": "boolean"
  },
  "symbols": {
   "type": "boolean"
  },
  "lowercase": {
   "type": "boolean"
  },
  "uppercase": {
   "type": "boolean"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/datavault-password-generator-a5b9fb9e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetavault.vercel.app](https://www.zero.xyz/host/zetavault.vercel.app/llms.txt)
