# Vealth Site Sweep

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

Crawls a given website URL and returns a structured health summary of pages walked, clean pages, broken links, and pages with issues.

## Facts

- Endpoint: POST https://vealth.net/.well-known/vealth/site-sweep
- Price: $10/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vealth-site-sweep-9e801790
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nQA29HHaYQQ12eaORagSe

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-site-sweep-9e801790 -d '<json body>'
```

Example prompt: Can you run a site sweep on https://myshop.com and tell me how many pages are clean, broken, or have issues?

## When to prefer this

Choose this endpoint when you need a quick, structured health snapshot of an entire website — number of clean, broken, and problematic pages — without needing deep per-page content extraction. It is particularly useful for pre-launch audits, ongoing site monitoring, or client reporting where a high-level crawl summary suffices. Prefer it over manual link checkers or heavier scraping tools when you want a fast, pay-per-call API with a clean JSON result.

## Known failure modes

- Invalid or unreachable URL returns an error or empty result
- Payment failure (402) if USDC is not provided or insufficient
- Timeout if the target site is very large or slow to respond
- Malformed URL input causes a validation error
- Site blocks crawlers (robots.txt or firewall) resulting in incomplete or zero results

## 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 origin URL, product name ('site-sweep'), a summary object containing counts of clean pages, broken pages, and pages with issues, plus the total number of pages walked during the crawl.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "origin": "https://example.com",
  "product": "site-sweep",
  "summary": {
   "clean": 37,
   "broken": 1,
   "with_issues": 4
  },
  "pages_walked": 42
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vealth-site-sweep-9e801790/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)
