# WhatChuNeed Scrape Hook

> WhatChuNeed Scrape Hook is a paid API for AI agents from whatchuneed.vercel.app, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-15).

Executes a web scraping hook against a target input URL or page, returning extracted structured data via the x402 pay-per-call protocol.

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/scrape/hook
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whatchuneed-scrape-hook-484bea28
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NXEqhsuUfyxuSPXclcyDM

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-scrape-hook-484bea28 -d '<json body>'
```

Example prompt: Can you scrape the content from https://example.com/products and pull out whatever structured data you find on that page?

## When to prefer this

Choose this endpoint when you need to extract content from a specific web page on a pay-per-call basis without managing your own scraping infrastructure. It is well-suited for lightweight, single-page scraping tasks where you want a quick structured result without committing to a full scraping platform subscription.

## Known failure modes

- Target URL is unreachable or returns non-200 status — result may be empty or error status
- Anti-bot protections (Cloudflare, CAPTCHAs) block the scrape — partial or no data returned
- Malformed or missing 'input' field — request validation error
- Dynamic JavaScript-heavy pages may not render fully — incomplete extraction
- Payment not processed via x402 — 402 Payment Required response before scrape executes

## 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 JSON object with a 'result' field containing the scraped and parsed data from the target, and a 'status' string indicating success or failure of the scrape 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-scrape-hook-484bea28/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)
