# minia2a x402-text-scrape

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

Fetches and extracts plain text content from a web URL via a pay-per-use x402-gated GET endpoint

## Facts

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

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-x402-text-scrape-44185df4
```

Example prompt: Can you scrape the text content from https://example.com/article and give me what it says?

## When to prefer this

Choose this endpoint when you need to extract plain text from a publicly accessible web URL and want a simple, pay-per-call API without managing browser infrastructure. It is well-suited for single-page text extraction tasks where HTML parsing is unnecessary and the content is server-rendered. If you need to solve CAPTCHAs, use the sibling x402-captcha-solve endpoint instead.

## Known failure modes

- Target URL is unreachable or returns a non-200 status — endpoint may return an error or empty result
- JavaScript-rendered pages may not return dynamic content since this is a simple GET-based scrape
- Pages with bot protection or CAPTCHAs may block the scrape request
- Missing or malformed 'input' object in query params causes a 400-level error
- Payment of 0.5 USDC not fulfilled via x402 protocol results in 402 Payment Required

## How this service works

minia2a service: x402-text-scrape

## Output

Returns the plain text content extracted from the target web page, stripped of HTML markup, allowing the agent to read, summarize, or further process the page's textual information.

## 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-x402-text-scrape-44185df4/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)
