# scrape402 LLM Ask (Claude)

> scrape402 LLM Ask (Claude) is a paid API for AI agents from x402.shizu.me, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Send a natural language prompt to a Claude LLM and receive a text response, paid per-call via USDC micropayment on Base — no API keys required.

## Facts

- Endpoint: POST https://x402.shizu.me/ask
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrape402-llm-ask-claude-2da457fa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BvQpMPY5Y0jxLUocDUiFF

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 scrape402-llm-ask-claude-2da457fa -d '<json body>'
```

Example prompt: Ask Claude: 'What are the main differences between proof-of-work and proof-of-stake blockchains?' — limit the answer to 200 tokens, and pay the $0.01 USDC fee per call.

## When to prefer this

Choose this endpoint when you need anonymous, keyless LLM inference and are willing to pay $0.01 USDC per call via x402 on Base — ideal for AI agents that lack static API credentials, need a lightweight Claude Haiku response, or are running in trustless/permissionless environments where signup is not feasible.

## Known failure modes

- Payment not included or insufficient USDC — returns 402 Payment Required
- max_tokens missing or invalid — returns 400 Bad Request
- prompt field missing — schema validation error
- Rate limit or model overload — returns 503 or timeout
- Malformed JSON body — returns 400 or 422 Unprocessable Entity

## How this service works

LLM completion at a flat price — no signup, no API keys, no token math. Body: {prompt (required), system?, max_tokens? (<=512), temperature?}. Runs Anthropic's Claude Haiku (current cheapest tier); prompt up to 5000 utf-8 bytes (~1000 English words). Stateless; prompts are not logged or retained. Returns {model, text, stop_reason, usage}. Use for summarization, classification, extraction, rewriting, or quick reasoning mid-pipeline.

## Output

A JSON object containing the generated text answer from Claude Haiku, the model identifier (e.g. 'claude-haiku-4-5'), token usage counts (input and output tokens), and the stop reason (e.g. 'end_turn').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "prompt": {},
  "max_tokens": {}
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "text": "x402 lets clients pay per HTTP request with USDC micropayments.",
  "model": "claude-haiku-4-5",
  "usage": {
   "input_tokens": 21,
   "output_tokens": 14
  },
  "stop_reason": "end_turn"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scrape402-llm-ask-claude-2da457fa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.shizu.me](https://www.zero.xyz/host/x402.shizu.me/llms.txt)
