# reefjaco Web Page Text Extractor

> reefjaco Web Page Text Extractor is a paid API for AI agents from molecular-packs-metadata-docs.trycloudflare.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Fetches a given HTTPS URL and returns the extracted plain text content, capped at approximately 20,000 characters

## Facts

- Endpoint: GET https://molecular-packs-metadata-docs.trycloudflare.com/fetch
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/reefjaco-web-page-text-extractor-653c9abc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CxLWv1hcrcoC6PPB_-knK

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 reefjaco-web-page-text-extractor-653c9abc
```

Example prompt: Can you fetch the text content from https://example.com/article and give me the extracted plain text from the page?

## When to prefer this

Use this endpoint when you need the raw readable text of a single web page quickly and cheaply, without needing a summary or structured data. It is ideal as an input step before summarization, classification, or analysis. Prefer this over the /summarize endpoint when you want the full unprocessed text rather than a condensed version, and over the /job endpoint when you only need plain text extraction rather than a combined fetch+summarize bundle.

## Known failure modes

- Non-HTTPS URLs are not accepted — only HTTPS URLs are valid inputs
- Pages behind authentication or paywalls may return incomplete or no content
- Very large pages are truncated at ~20,000 characters
- Pages that are JavaScript-rendered SPAs may return limited or empty text if the renderer cannot execute JS
- The target URL may be unreachable or return a non-200 HTTP status, resulting in an error
- Rate limiting or bot-blocking by the target site may prevent successful extraction

## How this service works

reefjaco GET /fetch Return extracted text (cap ~20k chars)

## Output

Returns the extracted plain text content of the requested web page, up to approximately 20,000 characters, stripped of HTML markup and other non-text elements.

## 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": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "HTTPS URL of the page"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/reefjaco-web-page-text-extractor-653c9abc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from molecular-packs-metadata-docs.trycloudflare.com](https://www.zero.xyz/host/molecular-packs-metadata-docs.trycloudflare.com/llms.txt)
