# Delx Password Policy Audit

> Delx Password Policy Audit is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Audits a password policy object for length requirements, breached-secret exposure, and MFA enforcement, returning machine-readable JSON results.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/password-policy-audit
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/delx-password-policy-audit-a8612956
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vR3l5Uf-GDuhid_AmRxBb

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 delx-password-policy-audit-a8612956 -d '<json body>'
```

Example prompt: Can you audit this password policy to check if it enforces minimum length, blocks breached passwords, and requires MFA: { "minLength": 12, "checkBreachedSecrets": true, "requireMFA": false }?

## When to prefer this

Choose this endpoint when you need a fast, stateless, zero-retention preflight audit of a password policy object inside an agent workflow — especially before committing security configurations to production or passing them downstream to enterprise integrations. It is ideal when you need deterministic machine-readable JSON output rather than a narrative security report, and when the audit must be local-only with no upstream data retention.

## Known failure modes

- Missing or malformed policy object returns a validation error
- Policy object with unrecognized fields may be ignored silently
- Network or payment authorization failure returns a non-200 status
- Empty policy object may result in all checks failing or returning indeterminate state

## How this service works

Audit password policy for length, breached-secret checks, and MFA. Use it as a bounded preflight or analysis step inside an enterprise agent workflow before data, policy, integration, security, or commercial decisions reach production. Returns deterministic machine-readable JSON for $0.003 USDC via x402 on Base. Execution is first-party, local-only, stateless, memory-only, and has no paid upstream or input retention. Results are advisory; the caller remains responsible for authorization and pro…

## Output

Returns deterministic machine-readable JSON containing individual pass/fail results for each policy dimension: password length adequacy, breached-secret check coverage, and MFA enforcement status, along with an overall advisory assessment.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "policy": {
   "type": "object",
   "description": "Input field: policy."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "risk": "low",
  "schema": "delx/util-password-policy-audit/v1",
  "findings": [],
  "recommendation": "Prefer long passwords, breached-secret blocking, password managers, and phishing-resistant MFA."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-password-policy-audit-a8612956/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.delx.ai](https://www.zero.xyz/host/api.delx.ai/llms.txt)
