# GPT Mini Batch Translation (gpt55.558686.xyz)

> GPT Mini Batch Translation (gpt55.558686.xyz) is a paid API for AI agents from gpt55.558686.xyz, paid per call via x402, $0.0025/call, status unknown (last checked 2026-09-14).

Translates short text snippets cheaply using a mini-tier GPT model, optimized for batch rough translation tasks.

## Facts

- Endpoint: POST https://gpt55.558686.xyz/v1/tools/translate/mini
- Price: $0.0025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gpt-mini-batch-translation-gpt55-558686-xyz-c776684e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q0RehlD7T7LjFd1bQY0q6

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 gpt-mini-batch-translation-gpt55-558686-xyz-c776684e -d '<json body>'
```

Example prompt: Can you translate this customer support snippet from English to French using the cheap mini model? Here's the text: 'Your order has been shipped and will arrive in 3-5 business days.'

## When to prefer this

Choose this endpoint when you need fast, cheap rough translations of short text snippets (support messages, UI strings, error messages) and do not need high-quality literary translation. It is significantly cheaper than full-tier models and ideal for batch processing where cost per call matters. Not suitable for long documents or high-stakes translations requiring accuracy.

## Known failure modes

- Text exceeds 700,000 character limit — request rejected
- Missing or empty target_language — validation error
- Payment not provided or insufficient — 402 payment required
- max_tokens value out of range (must be 1–4096) — validation error
- Unsupported language pair — model may return poor quality output or error

## How this service works

Cheap short-text translation for batch rough translation and support snippets. Model tier: mini; upstream model: gpt-5.4-mini. Price is derived from official OpenAI relative token costs with a local margin and floor. Pay up to $0.0025 per request with x402 USDC on Base. Public paid calls are limited to 700000 input characters and 4096 output tokens.

## Output

Returns the translated text in the target language, produced by a mini-tier GPT model, within the specified max_tokens limit (up to 4096 output tokens).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "maxLength": 700000,
   "minLength": 1
  },
  "max_tokens": {
   "type": "integer",
   "maximum": 4096,
   "minimum": 1
  },
  "source_language": {
   "type": "string"
  },
  "target_language": {
   "type": "string",
   "minLength": 1
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gpt-mini-batch-translation-gpt55-558686-xyz-c776684e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gpt55.558686.xyz](https://www.zero.xyz/host/gpt55.558686.xyz/llms.txt)
