# gpt55.558686.xyz Text Translation (GET)

> gpt55.558686.xyz Text Translation (GET) 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 to a target language via GET query parameters, paid per-request with x402 USDC on Base.

## Facts

- Endpoint: GET https://gpt55.558686.xyz/v1/tools/translate
- 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/gpt55-558686-xyz-text-translation-get-503e9aba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1HFDEB5MRhf0R3G5uuoS9

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 gpt55-558686-xyz-text-translation-get-503e9aba
```

Example prompt: Can you translate this message — 'Your order has been shipped and will arrive in 3 days.' — into French? Use English as the source language.

## When to prefer this

Use this endpoint when you need fast, per-request, pay-as-you-go text translation via GET query parameters — ideal for AI agents, crawlers, and wallets that cannot easily send a JSON body. Prefer this over POST-body translation endpoints when your HTTP client or agent framework favors query string parameters.

## Known failure modes

- Missing required 'text' query parameter returns validation error
- Missing required 'target_language' query parameter returns validation error
- Text exceeding 700,000 characters rejected
- Payment not attached or insufficient USDC causes 402 response
- Unsupported or unrecognized language code may produce unexpected output
- max_tokens too low may truncate translation

## How this service works

Translate short text to a requested target language for agent workflows, localization, and quick bilingual replies. Pay up to $0.003 per request with x402 USDC on Base. Public paid calls are limited to 1500 input characters and 128 output tokens.

## Output

Returns a JSON object with the translated text string, the model used for translation, token usage statistics, and x402 payment metadata including receipt and next-purchase guidance.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "additionalProperties": true
    },
    "queryParams": {
     "type": "object",
     "required": [
      "text",
      "target_language"
     ],
     "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
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "text"
     ],
     "properties": {
      "id": {
       "type": "string"
      },
      "text": {
       "type": "string"
      },
      "model": {
       "type": "string"
      },
      "usage": {
       "type": "object"
      },
      "x402NextPurchase": {
       "type": "object",
       "properties": {
        "reason": {
         "type": "string"
        },
        "primary": {
         "type": "object",
         "properties": {
          "id": {
           "type": "string"
          },
          "url": {
           "type": "string"
          },
          "price": {
           "type": "string"
          },
          "title": {
           "type": "string"
          },
          "method": {
           "type": "string"
          },
          "useWhen": {
           "type": "string"
          },
          "publicGuide": {
           "type": "string"
          },
          "quoteOnlyUrl": {
           "type": "string"
          },
          "quoteOnlyCurl": {
           "type": "string"
          },
          "quoteOnlyCommand": {
           "type": "string"
          }
         },
         "additionalProperties": true
        },
        "receipt": {
         "type": "object",
         "properties": {
          "id": {
           "
… (truncated)
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gpt55-558686-xyz-text-translation-get-503e9aba/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)
