# ScrapFly Translate API

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

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

## Facts

- Endpoint: POST https://scrapifrivly.orbonomy.xyz/api/translate
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-translate-api-5740eebb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QyvZYMZS6Dnak4wpgI257

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-5740eebb -d '<json body>'
```

Example prompt: Translate the following text into Spanish — 'Our product ships worldwide and offers a 30-day money-back guarantee' — the source is English.

## When to prefer this

Use this endpoint when you need pay-per-request text translation without a subscription, billed in USDC via x402 on Base chain. Suitable for agents that need occasional or low-volume translation without committing to a monthly API plan.

## Known failure modes

- Unsupported target language code returns error or empty result
- Missing required 'text' or 'target' fields returns 400-level error
- Payment failure via x402 on Base chain prevents request from processing
- Very long text may exceed limits or increase latency
- Ambiguous source language without specifying source may cause mistranslation

## 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 text in the target language.

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