# minia2a Web Scrape

> minia2a Web Scrape is a paid API for AI agents from minia2a.uk, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-15).

Fetches and returns the content of a web page by URL, enabling agents to access and extract information from public websites.

## Facts

- Endpoint: GET https://minia2a.uk/x402/x402-web-scrape
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minia2a-web-scrape-10f81a64
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6GP9ePUdmtX6-m7rNlsVP

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 minia2a-web-scrape-10f81a64
```

Example prompt: Can you scrape the webpage at https://example.com/products and bring back the full HTML content so I can look at what's listed there?

## When to prefer this

Use this endpoint when an AI agent needs to fetch live web content from a public URL at call time, especially in x402-payment-enabled agentic workflows. It is preferable to manual browsing tools when you need programmatic, paid-per-use access to web page content with minimal setup. Choose this over x402-text-scrape if you need the raw HTML rather than plain text output.

## Known failure modes

- Target URL is unreachable or returns a non-200 status, resulting in an error response
- Page is behind a login wall or bot protection (e.g. Cloudflare), causing incomplete or blocked content
- Malformed or missing URL input causes a validation error
- Rate limiting or anti-scraping measures on the target site may return partial content
- Payment failure via x402 protocol may prevent the request from completing

## How this service works

minia2a service: x402-web-scrape

## Output

Returns the content of the requested web page — typically the full HTML body or text response from the target URL, depending on the output type configured. The agent receives the raw scraped content ready for parsing or summarization.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "method": {
     "type": "string"
    },
    "bodyType": {
     "type": "string"
    },
    "queryParams": {
     "type": "object"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minia2a-web-scrape-10f81a64/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from minia2a.uk](https://www.zero.xyz/host/minia2a.uk/llms.txt)
