# MyMemory Text Translation via x402node

> MyMemory Text Translation via x402node is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-13).

Translates text between 50+ languages using the MyMemory translation service, returning the translated text and match quality score.

## Facts

- Endpoint: GET https://api.x402node.dev/nlp/translate
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-x402node-dev-981be93f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SvyOVRY1LvAvxdRqsUljT

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 api-x402node-dev-981be93f
```

Example prompt: Translate 'Thank you for your order, it will arrive in 3-5 business days' from English into Spanish using the MyMemory translation endpoint and tell me the match quality.

## When to prefer this

Choose this endpoint when you need quick, free-tier text translation across 50+ languages without requiring your own API keys, especially in AI agent pipelines handling multilingual content, localization workflows, or cross-border operations. Best for short-to-medium text snippets where MyMemory corpus quality is acceptable.

## Known failure modes

- Unsupported language pair returns error or empty translation
- Source text too long exceeds MyMemory free tier limits
- Auto-detection of source language fails for short or ambiguous text
- Rate limiting from MyMemory free tier if called at high frequency
- Invalid language code returns error response
- Network timeout to upstream MyMemory service

## How this service works

Translate text between languages via MyMemory (free, 50+ languages). Returns translated text and match quality. Use ?q=Hello+world and source=en and target=zh (or auto for source). Built for AI agents handling multilingual content, localization pipelines, and cross-border ops. Accepts payment on Base or Solana — either network works.

## Output

Returns the translated text in the target language along with a match quality score (0.0–1.0) indicating confidence/quality of the translation from the MyMemory corpus.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "q",
      "target"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Search query (required)"
      },
      "source": {
       "type": "string",
       "description": "Source lang (optional)"
      },
      "target": {
       "type": "string",
       "description": "Target lang (required)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-x402node-dev-981be93f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
