# The Stall — Page Intel (Web Page Fetcher)

> The Stall — Page Intel (Web Page Fetcher) is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.059/call, status unknown (last checked 2026-09-15).

Fetches a public URL over HTTP/HTTPS and returns its content along with extracted links, paid per-call via USDC on Base mainnet with no API key required.

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/page-intel
- Price: $0.059/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/the-stall-page-intel-web-page-fetcher-154d8217
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_elchwFW-DtBeo70seQr4P

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 the-stall-page-intel-web-page-fetcher-154d8217
```

Example prompt: Can you fetch the page at https://example.com/blog and give me its content along with up to 100 links found on that page?

## When to prefer this

Use this endpoint when you need to fetch a public web page's content and/or extract its links without setting up API keys or accounts, and are willing to pay $0.004 USDC per call via x402 on Base mainnet. Ideal for lightweight, on-demand web retrieval in agentic workflows where credential management is a burden.

## Known failure modes

- URL is not publicly accessible or requires authentication — returns an error or empty response
- Response body exceeds 256 KB — content is truncated
- URL is malformed or unreachable — returns a fetch/connection error
- link_limit exceeds 200 — parameter rejected or clamped
- Target server blocks automated requests — may return 403 or empty body

## How this service works

Extracts structured content from any public URL: page title, meta description, H1-H3 headings, all links (with text and internal/external flag), and a 500-character text preview. Useful for research agents following link chains from on-chain data, auditing page structure, or seeding downstream text-generation calls.

## Output

Returns the fetched content of the requested public URL (up to 256 KB) along with a list of extracted hyperlinks from the page, capped at the specified link_limit (default 50, max 200). Redirects are followed automatically.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "url": "https://www.example.com",
   "link_limit": 50
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/the-stall-page-intel-web-page-fetcher-154d8217/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from the-stall.intuitek.ai](https://www.zero.xyz/host/the-stall.intuitek.ai/llms.txt)
