# Suverse Language Pair Translator

> Suverse Language Pair Translator is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Translates text between any two specified languages using the MyMemory free tier, returning the translated text and alternative match candidates.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-lang-translate-pair
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-language-pair-translator-242ff2cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TIGWU_Y7ektMNCcKdOBA8

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 suverse-language-pair-translator-242ff2cb -d '<json body>'
```

Example prompt: Translate the following text from English (en) to Japanese (ja): 'Our new product launches next week and we are very excited to share it with you.'

## When to prefer this

Choose this endpoint when you need keyless, no-authentication machine translation between any arbitrary language pair and want alternative match suggestions alongside the primary translation. It is well-suited for agents that translate occasional short-to-medium text snippets without managing API credentials, and when access to MyMemory's translation memory corpus is acceptable. Prefer a specialized NMT provider (e.g. DeepL, Google Translate API) for high-volume or high-accuracy production use cases.

## Known failure modes

- Unsupported or invalid language code returns an error or empty result
- Very long text may exceed MyMemory free tier limits and return a partial result
- Rare or low-resource language pairs may produce low-confidence translations with poor match scores
- Network timeout if the upstream MyMemory API is slow or unavailable
- Malformed request body missing required language pair fields returns a 400-level error

## How this service works

Machine translation between any two languages via the keyless MyMemory free tier, with explicit source and target codes. Returns translated text plus alternative matches. For agents translating arbitrary pairs.

## Output

Returns the translated text in the target language along with one or more alternative match entries, each containing a translation candidate and a match quality score indicating confidence, sourced from the MyMemory translation memory.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-language-pair-translator-242ff2cb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
