# Vealth Work-Near (CDP-settled)

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

Returns open, fundable ecological work packets from the Vealth LIVE board within a specified radius of a geographic coordinate, settled via CDP/x402.

## Facts

- Endpoint: POST https://vealth.net/.well-known/vealth/cdp/work-near
- Price: $0.02/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-near-cdp-settled-3fd4f05b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_em_cQxOge-GTFfggqOILR

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-near-cdp-settled-3fd4f05b -d '<json body>'
```

Example prompt: Show me all open ecological work packets from the Vealth board within 30 km of latitude 37.77, longitude -122.41 — I want to see what fundable regen tasks are available near San Francisco right now.

## When to prefer this

Use this endpoint when you need to discover geo-located ecological or regenerative work opportunities near a specific coordinate; it reads the live Vealth board directly and returns funded, actionable work packets — ideal for agents coordinating local regen labor or matching people to provable ecological tasks.

## Known failure modes

- Missing or invalid lat/lng returns a 400 error
- Radius too large or zero may return empty results or an error
- No work packets found in the area returns an empty list
- Payment not settled via x402 (CDP) results in 402 Payment Required
- Service unavailable if Vealth LIVE board is down (503)

## How this service works

Work Near (CDP-settled mirror) — open, fundable ecological work packets from the LIVE board near a place. Reads our board directly.

## Output

A list of open, fundable ecological work packets from the Vealth LIVE board that fall within the specified radius of the given coordinates, each including task description, location, required proof, and payment details.

## Request schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vealth-work-near-cdp-settled-3fd4f05b/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)
