# TariffMonkee Fetch Clean (Paid Alias)

> TariffMonkee Fetch Clean (Paid Alias) is a paid API for AI agents from tariffmonkee.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Fetches a URL using a real rendered browser (JavaScript executed), returns clean Markdown, and caches results for 24 hours per URL — accessible via a single direct paid endpoint.

## Facts

- Endpoint: GET https://tariffmonkee.com/paid/fetch-clean
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tariffmonkee-fetch-clean-paid-alias-aab38eb3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ziaWL-AeqlFuW6atKpJ86

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 tariffmonkee-fetch-clean-paid-alias-aab38eb3
```

Example prompt: Can you fetch the page at https://example.com/product-page using a real browser so JavaScript loads, and give me the content as clean Markdown?

## When to prefer this

Choose this endpoint when you need to access a URL that relies on JavaScript rendering and want clean Markdown output, especially when you expect to call the same URL multiple times within 24 hours and want to benefit from caching. It is the single-URL direct alias of the /content endpoint, ideal for agents that call one URL at a time rather than batching. Prefer this over raw HTTP fetching when the page uses client-side rendering frameworks like React or Vue.

## Known failure modes

- URL is unreachable or returns a non-200 status — endpoint may return an error or empty content
- Page requires authentication or login — rendered content will reflect the unauthenticated state
- JavaScript rendering timeout — complex pages may not fully execute before capture
- Payment (x402) not settled correctly — request will be rejected before fetching
- Cached result may be stale if the page updated within the 24-hour window
- Malformed or missing URL input — request rejected with validation error

## How this service works

Alias of /content for agents that call a single URL directly. Fetches a URL with a real rendered browser (JavaScript executed) and returns clean Markdown. Results are cached for 24 hours per URL.

## Output

Returns the fully rendered page content as clean Markdown text. The response is a cached result (up to 24 hours per URL), meaning subsequent requests for the same URL within the cache window return the stored result without re-fetching. The Markdown strips navigation, ads, and boilerplate where possible, leaving readable main content.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tariffmonkee-fetch-clean-paid-alias-aab38eb3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tariffmonkee.com](https://www.zero.xyz/host/tariffmonkee.com/llms.txt)
