# agents.dyoeway.org Web Page Text Extractor

> agents.dyoeway.org Web Page Text Extractor is a paid API for AI agents from agents.dyoeway.org, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Extracts clean main text content from any web page, stripping navigation, ads, and boilerplate for research and summarization agents.

## Facts

- Endpoint: GET https://agents.dyoeway.org/extract
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agents-dyoeway-org-web-page-text-extractor-87149b60
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WSaf91XDwLFsVgygEj22t

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 agents-dyoeway-org-web-page-text-extractor-87149b60
```

Example prompt: Pull the clean main text from https://www.bbc.com/news/technology-12345678 — I want just the article body, no navigation, ads, or sidebar junk, so I can summarize it.

## When to prefer this

Choose this endpoint when you need clean, human-readable main text from an arbitrary web page and want navigation, ads, and boilerplate automatically stripped. Prefer this over raw HTTP fetch when the goal is readable article/content text rather than raw HTML, and over general-purpose scrapers when you specifically need the main content body isolated.

## Known failure modes

- URL is unreachable or returns a non-200 status — extraction fails
- URL points to a JavaScript-heavy SPA that requires rendering — content may be incomplete or empty
- URL points to a PDF or binary file — text extraction may fail
- Paywalled or login-required pages — only publicly visible text returned
- Malformed URL input — returns error
- Rate limiting or bot detection on target site — extraction blocked

## How this service works

Extract clean main text content from any web page (no nav/ads) — for research & summarizing agents. Input: ?url=

## Output

Clean, readable main body text extracted from the specified web page, with navigation menus, advertisements, headers, footers, and boilerplate removed — suitable for direct use in summarization, research, or NLP pipelines.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "url": {
       "type": "string",
       "description": "Page to extract clean text from"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agents-dyoeway-org-web-page-text-extractor-87149b60/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.dyoeway.org](https://www.zero.xyz/host/agents.dyoeway.org/llms.txt)
