# Crawl Orbonomy Translate

> Crawl Orbonomy Translate is a paid API for AI agents from crawl.orbonomy.xyz, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Fetches and translates the content of a given URL into a specified target language, pay-per-request via USDC.

## Facts

- Endpoint: POST https://crawl.orbonomy.xyz/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/crawl-orbonomy-translate-64891781
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9glEGcL_7hbmp38aW-_Gv

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-orbonomy-translate-64891781 -d '<json body>'
```

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

## When to prefer this

Choose this endpoint when you need to both fetch and translate a web page's content in a single call, without managing auth tokens or subscriptions — especially useful for AI agents that need multilingual web content on demand and can pay per request in USDC.

## Known failure modes

- Invalid or unreachable URL returns an error or success:false
- Unsupported target language code returns an error
- Payment failure via x402 results in 402 response before content is returned
- URL returns a non-text resource (e.g. PDF, image) which may not translate correctly
- Rate limiting or network timeout on the target URL

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