# ScrapFly Web Page Translation API

> ScrapFly Web Page Translation API is a paid API for AI agents from scravfly.vercel.app, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-15).

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

## Facts

- Endpoint: POST https://scravfly.vercel.app/api/crawl/translate
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-web-page-translation-api-519d4bc4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ySL5ENaF6BeUbUrYWk-ir

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-web-page-translation-api-519d4bc4 -d '<json body>'
```

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

## When to prefer this

Choose this endpoint when you need to both fetch and translate a live webpage in a single API call, paying per-request via USDC on Base chain. Ideal for agents that need to access multilingual web content without managing separate scraping and translation services.

## Known failure modes

- Invalid or unreachable URL returns success:false with no data
- Unsupported target language code results in an error response
- Website blocks scraping bots, leading to empty or failed translation
- Malformed input (missing url or targetLang) returns a 400-level error
- Network timeout on slow or large pages may result in failure

## 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 webpage at the provided URL in the specified 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-web-page-translation-api-519d4bc4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scravfly.vercel.app](https://www.zero.xyz/host/scravfly.vercel.app/llms.txt)
