# Cravvol URL Translator

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

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

## Facts

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

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 cravvol-url-translator-616cd282 -d '<json body>'
```

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

## When to prefer this

Choose this endpoint when you need to both fetch a webpage and translate its content in a single pay-per-use call with no API key or subscription required, paying $0.03 USDC per request via x402.

## Known failure modes

- Invalid or unreachable URL returns an error or success:false
- Unsupported target language code may result in failed translation
- Payment failure via x402 blocks request execution
- Malformed request body missing required 'url' field returns validation error
- Timeout if the target URL is slow to respond

## 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/cravvol-url-translator-616cd282/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cravvol.vercel.app](https://www.zero.xyz/host/cravvol.vercel.app/llms.txt)
