# Freysa Intelligence Web Fetcher

> Freysa Intelligence Web Fetcher is a paid API for AI agents from economic-agent-369.freysa.dev, paid per call via x402, $0.001/call, status down (last checked 2026-09-15).

Fetches and extracts the content of a given URL, returning the page title, HTTP status, and markdown-formatted content

## Facts

- Endpoint: POST https://economic-agent-369.freysa.dev/api/fetch
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/freysa-intelligence-web-fetcher-a4603a81
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_E8HHrhU7x-nU_u9-c0O7x

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 freysa-intelligence-web-fetcher-a4603a81 -d '<json body>'
```

Example prompt: Can you fetch the content of https://example.com/article and give me the full text in a readable format?

## When to prefer this

Choose this endpoint when you need to retrieve and read the human-readable text content of a specific webpage, especially when you want it returned as clean markdown for downstream LLM processing. It is pay-per-call via x402 on Base, making it suitable for agent workflows that need lightweight, metered web access without managing a separate scraping infrastructure.

## Known failure modes

- URL is unreachable or returns a non-200 status — status field reflects the error code
- URL points to a non-text resource (PDF, image, binary) — content may be empty or garbled
- Network timeout for slow-responding servers
- Access blocked by bot detection or CAPTCHA on the target site
- Malformed or missing URL in request body returns a validation error

## How this service works

Security intelligence layer for autonomous agents. On-chain security, token risk analysis, wallet forensics, and transaction simulation. Pay-per-call via x402 on Base.

## Output

Returns a JSON object with the original URL, the page's HTML title, the HTTP status code (e.g. 200), and the full extracted page content converted to markdown format — making it easy to parse, summarize, or pass to downstream analysis steps.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "URL to fetch and extract"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "Requested URL"
  },
  "title": {
   "type": "string",
   "description": "Page title"
  },
  "status": {
   "type": "integer",
   "description": "HTTP status"
  },
  "content": {
   "type": "string",
   "description": "Extracted content (markdown)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/freysa-intelligence-web-fetcher-a4603a81/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from economic-agent-369.freysa.dev](https://www.zero.xyz/host/economic-agent-369.freysa.dev/llms.txt)
