# 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 full content of a web page given a URL, using the x402 micropayment protocol

## Facts

- Endpoint: GET https://minia2a.uk/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-53da47b3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XYHOGSnX7BK0kG0iQKYcf

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-53da47b3
```

Example prompt: Can you scrape the page at https://example.com/products and bring back all the content from it?

## When to prefer this

Use this endpoint when an AI agent needs to access live web page content programmatically without maintaining its own scraping infrastructure, and is willing to pay per-call via the x402 micropayment protocol. Prefer this over browser-based or headless solutions when you need a lightweight, API-driven fetch of static or server-rendered HTML content.

## Known failure modes

- Target URL is unreachable or returns a non-200 status
- Payment via x402 protocol fails or USDC balance insufficient
- URL requires JavaScript rendering that the scraper does not support
- Target site blocks scraper user-agent or IP
- Input URL missing or malformed, causing a validation error

## How this service works

minia2a service: x402-web-scrape

## Output

Returns the raw content retrieved from the target web page — typically HTML or text — as fetched by the scraper at the time of the request.

## 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-53da47b3/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)
