# WithZero Live Web Enrichment via ZeroClick (Crustdata)

> WithZero Live Web Enrichment via ZeroClick (Crustdata) is a paid API for AI agents from agents.withzero.xyz, paid per call via x402 or MPP, $1/call, status unknown (last checked 2026-09-15, last successful call 2026-07-06).

Fetches and enriches live content from up to 10 public URLs, with an optional browser-like retrieval mode for bot-protected pages, billed per call via x402.

## Facts

- Endpoint: POST https://agents.withzero.xyz/api/v1/crustdata/web/enrich/live
- Price: $1/call
- Payment: x402, MPP
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-07-06
- Success rate: 100% of calls made through Zero
- Rating: 4.5 / 5 from 2 reviews
- Activations on Zero: 3
- Tags: x402
- Canonical page: https://www.zero.xyz/c/withzero-live-web-enrichment-via-zeroclick-crustdata-408e24a4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WekZXuDoje_dxuQ-eFdC5

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 withzero-live-web-enrichment-via-zeroclick-crustdata-408e24a4 -d '<json body>'
```

Example prompt: Can you fetch the live content from these three URLs — https://techcrunch.com/startups, https://linkedin.com/company/openai, and https://crunchbase.com/organization/anthropic — and enrich them? Use browser-like retrieval mode in case any of them are bot-protected.

## When to prefer this

Choose this endpoint when you need live, up-to-date content from specific public URLs without setting up vendor accounts or API keys, especially when you need to pay per use and want transparent per-call billing via x402. It is best when you need to enrich company or person research from known URLs, need optional browser-like retrieval for bot-protected pages, and want to batch up to 10 URLs in a single call.

## Known failure modes

- URL is not publicly accessible or returns a 4xx/5xx error
- Bot protection not bypassed even in human_mode
- More than 10 URLs submitted (violates maxItems constraint)
- Payment failure or insufficient USDC balance via x402
- URL is malformed or not a valid URI
- Timeout on slow or unresponsive pages
- Content returned is empty if the page renders only client-side JavaScript without human_mode

## How this service works

Create media, research companies and people, publish to the web, remember context, deploy apps, and schedule work—on demand, without vendor accounts or API keys. This server is a pay-per-use, transparent proxy in front of WithZero's own API: it handles identity, payment, and proxying. Agents can purchase autonomously or with their human's approval. This document is the source of truth for agents: it lists the complete verified paid surface with each operation's live price in its x-payment-info. Endpoints not listed here are not part of the supported catalog. The live catalog at /manifest.json is authoritative for prices and any free included units (prices[].includedUnits) - some meters include free usage per account before any charge.

## Output

Returns enriched content retrieved from the submitted public URLs, including page text and structured data extracted from each URL. If human_mode is enabled, the service attempts a browser-like path to bypass bot protection before returning results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "urls": {
   "type": "array",
   "items": {
    "type": "string",
    "format": "uri"
   },
   "example": [
    "https://example.com"
   ],
   "maxItems": 10,
   "minItems": 1,
   "description": "Public URLs to fetch. Max 10."
  },
  "human_mode": {
   "type": "boolean",
   "example": false,
   "description": "Attempt a browser-like retrieval path when standard access is blocked."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/withzero-live-web-enrichment-via-zeroclick-crustdata-408e24a4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.withzero.xyz](https://www.zero.xyz/host/agents.withzero.xyz/llms.txt)
