# minia2a Text Scrape

> minia2a Text 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).

Scrapes and extracts plain text content from a web page or URL via a paid GET request

## Facts

- Endpoint: GET https://minia2a.uk/x402/text-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-text-scrape-b4712332
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ODz1A8uN2IkCn1W8k_lSc

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-text-scrape-b4712332
```

Example prompt: Can you scrape the text content from https://example.com/article and give me the readable text from that page?

## When to prefer this

Use this endpoint when you need to quickly extract raw text from a public webpage and want a simple, pay-per-call approach without managing scraping infrastructure. It is well-suited for one-off text extraction tasks where setting up a full crawler is overkill.

## Known failure modes

- URL is unreachable or returns a non-200 status — scrape fails with an error
- Target page uses heavy JavaScript rendering — text may be incomplete or missing
- Page blocks scrapers via robots.txt or anti-bot measures — request may be rejected
- Invalid or malformed URL input — returns an error response
- Payment of 0.5 USDC not completed — request returns 402 Payment Required

## How this service works

minia2a service: x402-text-scrape

## Output

Returns the extracted plain text content of the target web page, stripped of HTML markup and formatting, suitable for reading, analysis, or further processing.

## 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-text-scrape-b4712332/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)
