# WhatChuNeed Scrape Keywords

> WhatChuNeed Scrape Keywords 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-15).

Scrapes and extracts keywords from a given input using a pay-per-call API powered by the x402 protocol

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/scrape/keywords
- Price: $0.15/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-keywords-44b41e00
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QbstI0AO1AJegfFlIocCC

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-keywords-44b41e00 -d '<json body>'
```

Example prompt: Can you scrape the keywords from this article text: 'Artificial intelligence is transforming healthcare by enabling faster diagnostics, personalized treatment plans, and predictive analytics for patient outcomes'?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call keyword extraction from arbitrary text or scraped content without committing to a subscription-based NLP or SEO platform. It is well-suited for one-off or low-volume keyword extraction tasks where per-call micropayment via USDC/x402 is acceptable and you want a simple string-in, keywords-out interface.

## Known failure modes

- Empty or too-short input string returns no keywords
- Malformed input object missing the required 'input' field returns an error status
- Payment failure via x402 protocol blocks the call entirely
- Rate limiting or server-side errors on the Vercel deployment return a non-success status
- Input containing only stopwords or generic filler text yields poor or empty keyword output

## 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 extracted keywords or key terms identified from the input content, along with a status string 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-scrape-keywords-44b41e00/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)
