# ScrapFly Content Transpose — Text Translation API

> ScrapFly Content Transpose — Text Translation API is a paid API for AI agents from test-scrapfly.orbonomy.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Translates text from one language to another, optionally auto-detecting the source language

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/content/transpose
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-content-transpose-text-translation-api-b68db1ed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ko0iKwhstnO_BPmOtoBQt

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-content-transpose-text-translation-api-b68db1ed -d '<json body>'
```

Example prompt: Translate the following text into French: 'The quick brown fox jumps over the lazy dog.' The source language is English.

## When to prefer this

Use this endpoint when you need on-demand, pay-per-use text translation via an x402-compatible micropayment workflow on Base chain, especially in agentic pipelines that already use the ScrapFly/Orbonomy API suite for web scraping and content tasks.

## Known failure modes

- Unsupported language code returns an error or empty result
- Missing target_language field causes a 400 or failure response
- Very long text may exceed limits and return an error
- Ambiguous or undetectable source language without source_language specified may yield poor translation
- Network or payment failure returns non-200 status

## 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_language"
 ],
 "properties": {
  "text": {
   "type": "string",
   "description": "text"
  },
  "source_language": {
   "type": "string",
   "description": "source_language"
  },
  "target_language": {
   "type": "string",
   "description": "target_language"
  }
 }
}
```

## 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-content-transpose-text-translation-api-b68db1ed/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)
