# Cerwal Web Page Translator

> Cerwal Web Page Translator is a paid API for AI agents from cerwal.vercel.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Fetches a web page at a given URL and translates its content into a specified target language, returning the translated data.

## Facts

- Endpoint: POST https://cerwal.vercel.app/api/translate
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cerwal-web-page-translator-a2576962
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7tnslbwt0nCqmnomglLzf

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 cerwal-web-page-translator-a2576962 -d '<json body>'
```

Example prompt: Can you fetch this French news article at https://www.lemonde.fr/example-article and translate the full page content into English for me?

## When to prefer this

Choose this endpoint when you need to both fetch and translate a web page in a single step, paying per request with no subscription required. Ideal for AI agents that occasionally need to access foreign-language websites and need the translated content directly, without setting up a separate scraping pipeline and translation pipeline.

## Known failure modes

- Invalid or unreachable URL returns an error or success:false
- Unsupported target language may result in empty or erroneous translation
- Network timeout fetching the remote page
- Page behind authentication or bot protection cannot be scraped
- Malformed URL input causes request failure
- Payment failure via x402 prevents request from being processed

## How this service works

Web scraping and search for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

Returns a JSON object with a 'success' boolean indicating whether the operation succeeded, and a 'data' object containing the translated content extracted from the target URL.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "URL to translate"
  },
  "targetLang": {
   "type": "string",
   "description": "Target language"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cerwal-web-page-translator-a2576962/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cerwal.vercel.app](https://www.zero.xyz/host/cerwal.vercel.app/llms.txt)
