# ScrapFly Crawl Translate

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

Fetches a web page at the given URL and returns its content translated into the specified target language

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/crawl/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/scrapfly-crawl-translate-db0d030b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yy7u3_5XcRmD8PPh2o2p7

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 scrapfly-crawl-translate-db0d030b -d '<json body>'
```

Example prompt: Scrape the page at https://www.lemonde.fr/international/ and translate its content into English for me.

## When to prefer this

Use this endpoint when you need to both scrape a web page AND translate its content in a single API call, rather than chaining a separate scraper and translation service. Ideal for multilingual research, monitoring foreign-language sites, or extracting content from pages written in a language the agent or user cannot read.

## Known failure modes

- Invalid or unreachable URL returns success:false with error details
- Unsupported target language code causes translation failure
- Anti-bot protections on target site block the crawl
- Payment failure via x402 protocol prevents request execution
- Timeout if the target page is slow to load
- Malformed request body missing required fields returns 4xx error

## How this service works

69 endpoints for data, content generation, and web scraping. Pay per request via x402 on Base chain.

## Output

Returns a JSON object with a 'success' boolean and a 'data' object containing the translated content of the scraped web page in the requested target language.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url",
  "targetLang"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "url"
  },
  "targetLang": {
   "type": "string",
   "description": "targetLang"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scrapfly-crawl-translate-db0d030b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from test-scrapfly.orbonomy.xyz](https://www.zero.xyz/host/test-scrapfly.orbonomy.xyz/llms.txt)
