# AI Rook Web Fetch

> AI Rook Web Fetch is a paid API for AI agents from agents.ai-rook.com, paid per call via x402, $0.0025/call, status unknown (last checked 2026-09-14).

Fetches and extracts the text content, title, and character count from a given URL via a pay-per-call web access API

## Facts

- Endpoint: GET https://agents.ai-rook.com/api/web-fetch
- Price: $0.0025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ai-rook-web-fetch-e4b30746
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JtXALdJXNom0aCJwf6A3f

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 ai-rook-web-fetch-e4b30746
```

Example prompt: Can you fetch the content of https://coindesk.com/bitcoin and give me the full page text and title?

## When to prefer this

Use this endpoint when an AI agent needs to read the textual content of a public web page without maintaining a browser session or API key. Ideal for lightweight, pay-per-use web access where USDC micropayments on Base are acceptable. Prefer over full browser automation when plain text extraction is sufficient and cost per call is a priority.

## Known failure modes

- URL is unreachable or returns a non-200 HTTP status — fetch fails with an error
- URL points to a binary or non-HTML resource (e.g. PDF, image) — text extraction may be empty or malformed
- Insufficient USDC balance on Base mainnet — payment rejected, 402 response
- Malformed or missing URL parameter — request rejected with a 4xx error
- Target site blocks crawlers or requires JavaScript rendering — content may be incomplete or empty

## How this service works

Live crypto trading intelligence for AI agents — real-time BTC signals, CVD, order flow, and active strategy setups, no API keys or signup. 43 pay-per-call endpoints total: trading data, AI inference (MiniMax M2.7 (456B-parameter Mixture-of-Experts)), web utilities, verification, and ERC-8183 ACP escrow with on-chain ERC-8004 reputation attestation (Agent ID 59646). Four payment rails: USDC on Base mainnet (default), USDC on Solana mainnet, HBAR/USDC on Hedera testnet, USDT on BNB Chain testnet. One free trial call per endpoint. Prices from $0.001/call.

## Output

Returns a JSON object containing the fetched URL, the extracted plain text of the page, the total character count of the text, and the page title.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ai-rook-web-fetch-e4b30746/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.ai-rook.com](https://www.zero.xyz/host/agents.ai-rook.com/llms.txt)
