# ScrapFly Translate API

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

Translates text from one language to another, with optional source language detection.

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/translate
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-translate-api-53bf8228
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0OtdN18dVPEKPazb915tt

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-translate-api-53bf8228 -d '<json body>'
```

Example prompt: Translate this text into French — 'Our product is available in stores nationwide and ships within 3 business days' — and detect the source language automatically.

## When to prefer this

Choose this endpoint when you need pay-per-request text translation without a subscription, especially when integrating into an AI agent workflow on the Base blockchain via x402 payments. Good for one-off or low-volume translation tasks where you want to avoid committing to a translation API subscription.

## Known failure modes

- Unsupported target language returns an error or empty data
- Missing required 'text' or 'target' fields returns a 400-level error
- Payment failure on Base chain results in 402 response
- Very long text may time out or return partial results
- Invalid language codes return an error response

## How this service works

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

## Output

A JSON object with a success boolean and a data object containing the translated text result.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text",
  "target"
 ],
 "properties": {
  "text": {
   "type": "string",
   "description": "text"
  },
  "source": {
   "type": "string",
   "description": "source"
  },
  "target": {
   "type": "string",
   "description": "target"
  }
 }
}
```

## 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-translate-api-53bf8228/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)
