# Agent Web Rescue – Webpage Intelligence & Structured Research Tool

> Agent Web Rescue – Webpage Intelligence & Structured Research Tool is a paid API for AI agents from agent-web-rescue.167-179-80-192.sslip.io, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Fetches a webpage and extracts structured, task-specific information from it, returning a JSON answer with evidence and confidence score.

## Facts

- Endpoint: POST https://agent-web-rescue.167-179-80-192.sslip.io/v1/agent-web-rescue
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-web-rescue-webpage-intelligence-structured-research-tool-7e6a4400
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4SUKVc1VB9urs4_7Ew3lB

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 agent-web-rescue-webpage-intelligence-structured-research-tool-7e6a4400 -d '<json body>'
```

Example prompt: Go to https://store.example.com/product/widget-pro and find me the product name and current price — return the result as JSON with evidence of where you found it.

## When to prefer this

Choose this endpoint when you need to extract specific, task-defined information from a known webpage and receive it as structured JSON with supporting evidence and a confidence score. It is well-suited for one-shot research tasks where you already have the target URL and need a precise answer rather than a full crawl. Prefer it over generic scraping tools when you need interpretive extraction (e.g. 'what is the price') rather than raw HTML, and when traceability via evidence snippets is important.

## Known failure modes

- URL is unreachable or returns non-200 status — ok:false with error message
- Content is behind a login wall or CAPTCHA — extraction fails or returns low-confidence result
- Task description is too vague — answer may be empty or confidence very low
- Page content does not contain the requested information — evidence array will be empty
- URL format is invalid or does not match https?:// pattern — request rejected by input validation

## How this service works

Agent-oriented x402 discovery metadata for 1 production tools covering webpage intelligence, X Layer research, and structured research work.

## Output

Returns a JSON object with an `ok` status flag, a `data` object containing the extracted structured information, an `answer` string summarizing findings, an `evidence` array with verbatim text snippets and their source URLs, a `confidence` score (0–1), and a `meta` block with latency in milliseconds, the fetched URL, and content type.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "format": "uri",
   "pattern": "^https?://"
  },
  "task": {
   "type": "string",
   "maxLength": 2000,
   "minLength": 1
  },
  "output": {
   "enum": [
    "json"
   ],
   "type": "string",
   "default": "json"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "data": {
   "name": "Example",
   "price": "$19.99"
  },
  "meta": {
   "latency_ms": 250,
   "fetched_url": "https://example.com/product",
   "content_type": "text/html"
  },
  "answer": "product name: Example; price: $19.99",
  "evidence": [
   {
    "text": "Example — $19.99",
    "source_url": "https://example.com/product"
   }
  ],
  "confidence": 0.9
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-web-rescue-webpage-intelligence-structured-research-tool-7e6a4400/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-web-rescue.167-179-80-192.sslip.io](https://www.zero.xyz/host/agent-web-rescue.167-179-80-192.sslip.io/llms.txt)
