# OneShotAgent Web Read

> OneShotAgent Web Read is a paid API for AI agents from win.oneshotagent.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Fetches a web page and returns its content as markdown along with a screenshot

## Facts

- Endpoint: POST https://win.oneshotagent.com/v1/tools/web-read
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oneshotagent-web-read-33f03bee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4b2PpLIVB8whq6tXqu5m5

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 oneshotagent-web-read-33f03bee -d '<json body>'
```

Example prompt: Can you read the page at https://www.example.com/article and give me the full content as clean text?

## When to prefer this

Use this endpoint when you need to read and extract the human-readable content of a specific URL as structured markdown, especially when you also need a visual screenshot of the page. Prefer this over a generic web search when you already have the URL and need the full page content rather than a snippet. It is ideal for article ingestion, content summarization pipelines, competitor research, or any workflow where a URL must be turned into processable text for an AI agent.

## Known failure modes

- URL is unreachable or returns a 4xx/5xx HTTP status
- Page requires JavaScript rendering that exceeds timeout
- URL is malformed or not a valid URI
- Page blocks bots via CAPTCHA or access restrictions
- Content is behind a login wall and cannot be accessed
- Screenshot generation fails for heavily dynamic pages

## How this service works

Read a web page and extract content as markdown with screenshot

## Output

Returns the full text content of the fetched web page rendered as markdown, along with a screenshot image of the page. The markdown preserves headings, links, and structure from the original HTML.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "format": "uri",
   "description": "URL to read"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oneshotagent-web-read-33f03bee/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from win.oneshotagent.com](https://www.zero.xyz/host/win.oneshotagent.com/llms.txt)
