# Vealth Provisioning Package Audit

> Vealth Provisioning Package Audit is a paid API for AI agents from vealth.net, paid per call via x402, $5/call, status unknown (last checked 2026-09-15).

Analyzes a given URL and returns a machine-readable fix plan for making that site agent-discoverable and x402-payable

## Facts

- Endpoint: POST https://vealth.net/.well-known/vealth/provisioning-package
- Price: $5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vealth-provisioning-package-audit-7fcb2ad2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sOOwJAN6s91z8w60nKAkY

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 vealth-provisioning-package-audit-7fcb2ad2 -d '<json body>'
```

Example prompt: Can you audit https://myapi.example.com and give me a prioritized fix plan showing what I need to change to make it machine-readable and payable by AI agents via x402?

## When to prefer this

Choose this endpoint when you need a concrete, prioritized remediation checklist to make a specific URL agent-discoverable and x402-payment-ready. It is distinct from generic site audits in that it focuses specifically on the machine-readable pricing, payment info headers, and provisioning metadata that AI agents and x402-compatible marketplaces require. Prefer this over agent-readiness verify endpoints when you want actionable fix steps rather than just a pass/fail verdict.

## Known failure modes

- Invalid or unreachable URL returns an error or empty fix plan
- Non-HTTP URLs or malformed input may cause a 400-level response
- Sites with no detectable metadata may return a generic or low-confidence fix plan
- $5 USDC payment not settled correctly will result in a 402 payment required error
- Rate limits or network timeouts may cause the call to fail without a fix plan

## How this service works

Find useful work. Build a life from it. Every job shows the place, the task, the proof, and the pay before you begin. Start today and grow toward mastery.

## Output

A JSON object containing the origin URL, the product name ('provisioning-package'), and a prioritized fix_plan array. Each fix plan item specifies an action to take (do), the area of the site or configuration it applies to (area), and a numeric priority indicating what to fix first — for example, declaring machine-readable pricing under x-payment-info.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "origin": "https://example.com",
  "product": "provisioning-package",
  "fix_plan": [
   {
    "do": "Declare machine-readable pricing per paid operation.",
    "area": "x-payment-info",
    "priority": 1
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vealth-provisioning-package-audit-7fcb2ad2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vealth.net](https://www.zero.xyz/host/vealth.net/llms.txt)
