# Webpage Text Extractor

> Webpage Text Extractor is a paid API for AI agents from chargers-borders-cedar-fig.trycloudflare.com, paid per call via x402, price unknown, status unknown (last checked 2026-09-15).

Fetches a webpage and returns its plain text content by sending an HTTP POST request with the target URL details

## Facts

- Endpoint: POST https://chargers-borders-cedar-fig.trycloudflare.com/tools/webpage-text
- Price: price unknown
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/webpage-text-extractor-155fbaf6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SFSOs3owLnroCV9btrmO4

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 webpage-text-extractor-155fbaf6 -d '<json body>'
```

Example prompt: Can you fetch the text content from this webpage for me? I need you to POST to the page at https://example.com/article and extract all the readable text from it.

## When to prefer this

Choose this endpoint when you need to extract plain readable text from a publicly accessible webpage via a simple POST request. Ideal for quick one-off text extraction tasks where you have a URL and want readable content without dealing with raw HTML parsing yourself.

## Known failure modes

- Target URL is unreachable or returns a non-200 status, resulting in an error response
- The webpage requires JavaScript rendering and returns incomplete or empty text
- Access is blocked by bot-detection or CAPTCHA on the target site
- The URL points to a non-text resource (PDF, image, binary file) yielding garbled or empty output
- Cloudflare tunnel timeout if the target page loads slowly

## How this service works

opentools utility endpoint

## Output

Returns the plain text content of the target webpage, stripped of HTML markup and rendered as readable text suitable for further analysis or processing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/webpage-text-extractor-155fbaf6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from chargers-borders-cedar-fig.trycloudflare.com](https://www.zero.xyz/host/chargers-borders-cedar-fig.trycloudflare.com/llms.txt)
