# WhatChuNeed Article Scraper

> WhatChuNeed Article Scraper 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).

Scrapes and extracts the main textual content from a given article URL, returning the parsed article body

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/scrape/article
- 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-article-scraper-382d4b38
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EgY2BBxlU2wsUnwM6FEun

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-article-scraper-382d4b38 -d '<json body>'
```

Example prompt: Can you scrape the article at https://www.example.com/news/2024/some-article and give me the main body text?

## When to prefer this

Choose this endpoint when you need to extract clean readable text from a specific article or blog post URL, especially in a pay-per-call context where you don't want a subscription. Prefer this over general-purpose crawlers when you need lightweight, targeted article extraction rather than full site crawling.

## Known failure modes

- URL is behind a hard paywall or bot-detection block — may return empty or partial content
- Invalid or malformed URL input — returns error status
- Target page returns non-article content (e.g. homepage, redirect) — result may be noisy or irrelevant
- Timeout if the target server is slow or unreachable
- JavaScript-rendered pages may not be fully scraped if the scraper uses static fetching

## 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 scraped and parsed article text extracted from the provided URL, along with a status field indicating success or failure of the scraping 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-article-scraper-382d4b38/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)
