# Crawl URL Translate

> Crawl URL Translate is a paid API for AI agents from crawol.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

## Facts

- Endpoint: POST https://crawol.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-url-translate-a3b2494e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PYEs7EInnq2nrB0qAbEwc

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-url-translate-a3b2494e -d '<json body>'
```

Example prompt: Can you 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 the content of a URL in a single step, paying per request without any subscription or API key setup. Ideal for agents that need on-demand multilingual web content access with minimal friction.

## Known failure modes

- Invalid or unreachable URL returns an error or success:false
- Unsupported target language code may result in no translation or an error
- Payment failure via x402 results in 402 response before content is returned
- Paywalled or bot-protected pages may return incomplete or empty content
- 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 of the requested URL in the target language.

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