# GPT-5.4-mini Standard Text Translation

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

Translates short text, snippets, and product copy between languages using a standard-tier GPT-5.4-mini model, paid via x402 USDC on Base.

## Facts

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

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-5-4-mini-standard-text-translation-0c52b999 -d '<json body>'
```

Example prompt: Translate this product tagline from English to French: 'Discover the future of clean energy today' — keep it under 50 tokens.

## When to prefer this

Choose this endpoint when you need fast, cost-effective translation of short texts, UI strings, product descriptions, or marketing snippets and want to pay per-call via x402 USDC on Base without managing an API key. Best for standard-quality translation workloads where budget matters. Prefer a premium-tier endpoint if you need the highest accuracy for complex or long-form documents.

## Known failure modes

- Text exceeds 700,000 character limit — request rejected
- max_tokens exceeds 4096 — request rejected
- Missing or empty target_language — validation error
- Unsupported language code — translation may fail or return error
- Payment failure via x402 — 402 response, translation not performed
- Empty or missing text field — validation error

## How this service works

GPT-5.6 Luna API Base USDC and OpenAI-compatible x402 chat: one request for $0.00293, paid by browser wallet or a quote-first agent fallback.

## Output

Returns the translated text in the target language, limited to the requested max_tokens output length, suitable for use in UI snippets, product listings, or marketing copy.

## 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
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "text": "Generated text."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gpt-5-4-mini-standard-text-translation-0c52b999/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)
