# money-agent Web Page Text Extractor

> money-agent Web Page Text Extractor is a paid API for AI agents from money-agent-production-736f.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches and returns the plain text content of a single public HTTP/HTTPS URL, with SSRF protection blocking private and internal hosts.

## Facts

- Endpoint: GET https://money-agent-production-736f.up.railway.app/v1/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/money-agent-web-page-text-extractor-f16c8b6d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SNHj3GiF7mvv_diRClCZS

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 money-agent-web-page-text-extractor-f16c8b6d
```

Example prompt: Fetch the full text from this public webpage for me: https://example.com/some-article — I need the title and body content.

## When to prefer this

Use this endpoint when an agent needs to read the raw text of a single known public URL — for example, to summarize an article, extract terms, or gather facts from a specific page. It is not a search engine (you must supply the URL), not a full-site crawler, and explicitly blocks internal/private network access (SSRF-safe). Prefer it over general HTTP clients when you want structured text+title output at low cost ($0.01 USDC per call) with built-in safety controls.

## Known failure modes

- Private, loopback, or cloud-metadata IP addresses are rejected with an SSRF block error
- Non-public or authentication-gated URLs will return an empty or error response
- Malformed or non-HTTP(S) URLs will fail validation
- Pages with only JavaScript-rendered content may return minimal text
- Payment failure (402) if the x402 payment header is missing or insufficient

## How this service works

Call when you need the text of one public http(s) page. Required query url. SSRF-gated. Not a search engine and not a GitHub clone.

## Output

Returns a JSON object containing the page URL, title, full extracted plain text, byte count, and the amount paid (in USDC). Text is the human-readable content of the page with HTML stripped away.

## 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": "Public http(s) page to extract. Required. Private, loopback, and metadata hosts are rejected."
      },
      "source": {
       "type": "string",
       "description": "Set to catalog-index only for the agent's own extract index ping."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "paid",
      "url",
      "title",
      "text",
      "bytes"
     ],
     "properties": {
      "url": {
       "type": "string"
      },
      "paid": {
       "type": "number"
      },
      "text": {
       "type": "string"
      },
      "bytes": {
       "type": "number"
      },
      "title": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/money-agent-web-page-text-extractor-f16c8b6d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from money-agent-production-736f.up.railway.app](https://www.zero.xyz/host/money-agent-production-736f.up.railway.app/llms.txt)
