# Crawl Translate Endpoint

> Crawl Translate Endpoint is a paid API for AI agents from cr4vvol.vercel.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

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

## Facts

- Endpoint: POST https://cr4vvol.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/crawl-translate-endpoint-1203bd92
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1ivj-XJ9gyrR06qNuhynY

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 crawl-translate-endpoint-1203bd92 -d '<json body>'
```

Example prompt: Fetch the content of https://www.lemonde.fr/international/ and translate it into English for me.

## When to prefer this

Use this endpoint when you need to both fetch and translate a webpage's content in a single call, paying per request with no subscription required. Ideal for AI agents that need on-demand multilingual web content without managing API keys or subscriptions.

## Known failure modes

- Invalid or unreachable URL returns error or empty data
- Unsupported target language code results in failed translation
- Payment not processed via x402 returns 402 status
- Network timeout if the target URL is slow to respond
- Malformed request body missing required 'url' field returns 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 of the fetched 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/crawl-translate-endpoint-1203bd92/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cr4vvol.vercel.app](https://www.zero.xyz/host/cr4vvol.vercel.app/llms.txt)
