# Vealth Starter Pack

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

Returns a curated set of entry-level work opportunities with location, task description, proof requirements, and pay details before the worker begins

## Facts

- Endpoint: POST https://vealth.net/.well-known/vealth/starter-pack
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vealth-starter-pack-01a6e08a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3yozrWkLZ_vEsoldjemtk

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-starter-pack-01a6e08a -d '<json body>'
```

Example prompt: Can you pull up the Vealth starter pack and show me what entry-level jobs are available right now — I want to see the location, what the task is, how I prove I did it, and how much I get paid before committing to anything?

## When to prefer this

Choose this endpoint when you need to discover entry-level work opportunities with full upfront transparency on location, task, proof, and pay — particularly when onboarding a new worker or agent who needs a curated starting point rather than a broad job search. Prefer this over generic job boards when proof-of-work and pay transparency before commitment are essential requirements.

## Known failure modes

- Payment of $1 USDC not received — returns 402 Payment Required
- Malformed POST body or missing required fields — returns 400 Bad Request
- Service temporarily unavailable — returns 503
- Empty result set if no starter jobs are currently available
- Invalid bodyType enum value causes schema validation error

## 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 response containing a curated list of starter-level work opportunities, each including the job location, task description, required proof of completion, and payment amount — giving the worker full transparency before accepting any work.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vealth-starter-pack-01a6e08a/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)
