# Vealth Method Template

> Vealth Method Template is a paid API for AI agents from vealth.net, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns a structured, step-by-step work method template for a given standard, including equipment, decision rules, reference method, and acceptance criteria

## Facts

- Endpoint: POST https://vealth.net/.well-known/vealth/method-template
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vealth-method-template-d11c90ad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bbP5wCgYsknnNJWrTK3au

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-method-template-d11c90ad -d '<json body>'
```

Example prompt: Can you pull up the method template for EPA 180.1 so I can see the steps, required equipment, decision rules, and acceptance criteria before starting that turbidity testing job?

## When to prefer this

Use this endpoint when you need a machine-readable, structured method template tied to a specific work standard — particularly when you want steps, equipment, decision rules, and acceptance criteria in one call. Prefer this over general web search when the standard is recognized on the Vealth platform and you need usage/pricing context alongside the method.

## Known failure modes

- Unknown or unsupported standard name returns empty or error response
- Malformed input object missing the 'standard' field may result in a 400-level error
- Payment failure via x402 protocol blocks access to the template
- Standard exists but has no usage data yet, returning zero counts

## 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 full method template: an ordered list of steps, required equipment (e.g. turbidimeter), decision rules, the reference method identifier (e.g. EPA 180.1), acceptance criteria (e.g. ±5%), plus usage statistics showing how many workers use this method and the min/median/max pay in USD.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "method": {
   "steps": [
    "…"
   ],
   "equipment": [
    "turbidimeter"
   ],
   "decision_rules": [
    "…"
   ],
   "reference_method": "EPA 180.1",
   "acceptance_criteria": [
    "±5%"
   ]
  },
  "used_by": {
   "count": 6,
   "price_usd": {
    "max": 0.1,
    "min": 0.02,
    "median": 0.05
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vealth-method-template-d11c90ad/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)
