# whatchuneed Crawl Extract

> whatchuneed Crawl Extract is a paid API for AI agents from whatchuneed.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Crawls a URL or input string and extracts structured data from web content via a pay-per-call API

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/crawl/extract
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whatchuneed-crawl-extract-7b29557b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SmNkErM8YETBbax7LoICM

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 whatchuneed-crawl-extract-7b29557b -d '<json body>'
```

Example prompt: Can you crawl this URL and extract all the structured content from it: https://example.com/products/shoes — I need the product names, prices, and descriptions pulled out as clean data.

## When to prefer this

Choose this endpoint when you need a simple, pay-per-call web crawl and extraction without managing your own scraping infrastructure. It is well-suited for one-off or low-volume extractions where setting up a dedicated scraper is overkill, and when you want to pay only for what you use via the x402 protocol.

## Known failure modes

- Invalid or unreachable URL returns an error status
- Paywall or bot-protection on target site may prevent extraction
- Malformed input string causes parsing failure
- Target page returns no extractable structured content
- Payment failure via x402 protocol blocks the call
- Timeout if the target URL is slow to respond

## How this service works

320+ pay-per-call API endpoints across accommodation, LLM, code execution, crypto, medical, finance, and more. One API, one payment. Powered by x402 protocol.

## Output

Returns a result object containing the extracted and structured data from the crawled input, along with a status string indicating success or failure of the extraction operation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "string",
   "description": "Request input"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "result": {
   "type": "object",
   "description": "Response data"
  },
  "status": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whatchuneed-crawl-extract-7b29557b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from whatchuneed.vercel.app](https://www.zero.xyz/host/whatchuneed.vercel.app/llms.txt)
