# Vealth Work Packet

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

Returns a structured, provable work packet — task, location, proof requirements, and pay — for a real-world problem at given coordinates

## Facts

- Endpoint: POST https://vealth.net/.well-known/vealth/work-packet
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vealth-work-packet-95f76fde
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y1Z1l90dvq9ieM8EBUX3Q

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-work-packet-95f76fde -d '<json body>'
```

Example prompt: Find me a real-world work packet I can start right now — I'm at latitude 37.7749, longitude -122.4194 and I'm interested in water quality problems near me. Show me the task, what proof I'll need to submit, and how I get paid.

## When to prefer this

Choose this endpoint when you need a structured, verifiable, on-chain-payable real-world work assignment for a specific location and problem type. It is uniquely suited for agents coordinating field workers, environmental monitors, or gig labor where proof of completion and blockchain settlement are required. Prefer this over generic job boards or task APIs when you need tamper-evident proof requirements, a standards-registered method template, and an on-chain payment path baked in from the start.

## Known failure modes

- No matching work packet for the given coordinates or problem type — returns empty packet or alternates only
- Invalid or missing lat/lng causes a 400 bad request
- Problem string too vague to match a registered method template
- x402 payment of $0.10 USDC not authorized or insufficient balance — returns 402 Payment Required
- Network or on-chain settlement layer unavailable — returns 5xx

## 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 a work packet with: a standards-registered method template name, a definition ID (e.g. water-quality-grab-sample-v1), a funding path for submitting labor (x402 pay lane), a tCO2e emissions estimate, the on-chain settlement path (Base), a list of required proof types (photo+GPS, meter reading, signature), any alternate packets, and an artifact SHA256 hash for tamper-evidence.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lat": {
   "type": "number"
  },
  "lng": {
   "type": "number"
  },
  "problem": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "packet": {
   "method": "standards-registered method template",
   "definitionId": "water-quality-grab-sample-v1",
   "funding_path": "POST /labor ($0.05 x402 write lane — no key)",
   "tco2e_estimate": 0,
   "settlement_path": "on-chain EWP settlement on Base",
   "proof_requirements": [
    "photo+GPS",
    "meter reading",
    "signature"
   ]
  },
  "alternates": [],
  "artifact_sha256": "0x…"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vealth-work-packet-95f76fde/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)
