# Vealth EWP Adoption Simulator

> Vealth EWP Adoption Simulator is a paid API for AI agents from vealth.net, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-13).

Simulates the first 90 days of workforce adoption of an Earned Work Proof (EWP) program, projecting wages flowed and work packets completed for a given URL and workforce size.

## Facts

- Endpoint: POST https://vealth.net/.well-known/vealth/ewp-adoption-sim
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vealth-ewp-adoption-simulator-4cbc55a2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PjblstomA1vgN6MBOaWqL

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-ewp-adoption-simulator-4cbc55a2 -d '<json body>'
```

Example prompt: Run a Vealth EWP adoption simulation for https://example-org.org with a workforce of 500 people and tell me how many work packets they'd complete and how much wages would flow in the first 90 days.

## When to prefer this

Choose this endpoint when you need a forward-looking simulation of how a workforce would adopt an Earned Work Proof program over 90 days, specifically for wage-flow and packet-completion projections. It is uniquely suited for pre-rollout planning, grant writing, impact modeling, or SDG-aligned workforce reporting where concrete numeric forecasts are needed before committing to deployment.

## Known failure modes

- Invalid or unreachable URL returns an error or unexpected placement
- Workforce value of 0 or negative may produce zero-output simulation or validation error
- Missing required fields (url or workforce) likely returns a 400-level error
- Network or payment failure (402 not settled) prevents simulation from running
- Extremely large workforce numbers may produce unrealistic extrapolations

## 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

Returns a JSON object with the product identifier ('ewp-adoption-sim'), a placement ladder label aligned to UN SDGs (e.g. 'Restore'), and simulated 90-day totals including total wages flowed in USD and total work packets completed by the workforce.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "product": "ewp-adoption-sim",
  "placement": {
   "ladder": "Restore (toward the UN SDGs)"
  },
  "simulated_first_90_days": {
   "day_90_totals": {
    "wages_flowed_usd": 116280,
    "packets_completed": 171
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vealth-ewp-adoption-simulator-4cbc55a2/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)
