# whatchuneed Extract Utility

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

Extracts structured information or data from a provided text input string

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/util/extract
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whatchuneed-extract-utility-e7d6bae8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_g9zASqR2aEuO3ANOnZOJv

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-extract-utility-e7d6bae8 -d '<json body>'
```

Example prompt: Extract the key structured information from this text for me: 'Invoice #4521, due March 15 2025, billed to Acme Corp, total amount $4,200 USD for consulting services.'

## When to prefer this

Choose this endpoint when you need to extract structured data or key entities from an unstructured text string and want a pay-per-call model via x402 protocol without committing to a subscription. Best suited for lightweight, one-off extraction tasks where the input can be expressed as a single string.

## Known failure modes

- Missing 'input' field returns validation error
- Empty string input may return empty or null result
- Ambiguous or unstructured input may produce incomplete extraction
- Malformed JSON request body causes 400 error
- Service unavailability returns 5xx error

## 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 containing a 'result' field with the extracted structured data and a 'status' field 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-extract-utility-e7d6bae8/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)
