# agentdatum.com Web Fetch

> agentdatum.com Web Fetch is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Fetches any public web page via GET and returns its raw text content for agent consumption.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/webfetch
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentdatum-com-web-fetch-2125ecdf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U6n8fsCswDcVWo2DdIUSN

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 agentdatum-com-web-fetch-2125ecdf
```

Example prompt: Can you fetch the raw text content of this page for me: https://docs.example.com/getting-started — I need to read what it currently says.

## When to prefer this

Use this endpoint when an agent needs to read the current live content of any public web page — such as documentation, news articles, or product pages — and only needs raw text output. It is ideal for lightweight, low-cost ($0.001) single-URL fetches where structured extraction is not required. Prefer this over a full browser-automation or JavaScript-rendering service when the target page is a standard HTML document without heavy client-side rendering.

## Known failure modes

- URL is not publicly accessible or requires authentication — returns an error or empty content
- Target page returns non-text content (e.g. binary files, images) — raw bytes or garbled output returned
- Page is behind a JavaScript-rendered wall — static fetch may return incomplete content
- Invalid or malformed URL in the query parameter — request fails with a validation error
- Target server is down or rate-limiting — fetch times out or returns an HTTP error code

## How this service works

Fetch any public web page and return its raw text content — for agents that need to read live web data, docs, or articles. $0.001 per fetch. 💎【付款后立得】实时结构化JSON，即插即用——无需注册，USDC一键支付即取数据。

## Output

Returns the raw text content extracted from the requested public web page, suitable for further processing, reading, or analysis by an agent.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://example.com/page",
  "length": 12345,
  "content": "<html>...</html>",
  "status_code": 200,
  "content_type": "text/html"
 }
}
```

## More

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