# Cerawal URL Translator

> Cerawal URL Translator is a paid API for AI agents from cerawal.vercel.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Fetches and translates the content of a given URL into a specified target language, returning the translated data.

## Facts

- Endpoint: POST https://cerawal.vercel.app/api/translate
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cerawal-url-translator-a1068a5a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Nk-beFJ2_u49Xnv_4OiAi

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 cerawal-url-translator-a1068a5a -d '<json body>'
```

Example prompt: Can you fetch the content of https://example.fr/article and translate it into English for me?

## When to prefer this

Choose this endpoint when you need to both retrieve and translate the content of a specific URL in a single call, without managing auth or subscriptions, paying per request via USDC x402. Ideal for AI agents that need to consume foreign-language web content in a target language on demand.

## Known failure modes

- Invalid or unreachable URL returns an error or success:false
- Unsupported target language code may result in an error or untranslated content
- Payment failure (x402) causes request to be rejected before processing
- Timeout if the target URL is slow or unresponsive
- Malformed request body missing required 'url' field returns a validation error

## 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 and a 'data' object containing the translated content retrieved from the specified 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/cerawal-url-translator-a1068a5a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cerawal.vercel.app](https://www.zero.xyz/host/cerawal.vercel.app/llms.txt)
