# quartermaster.surewhynot.app Text Translation

> quartermaster.surewhynot.app Text Translation is a paid API for AI agents from quartermaster.surewhynot.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Translates any text into a specified target language using AI, with automatic source language detection.

## Facts

- Endpoint: GET https://quartermaster.surewhynot.app/v1/translate
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/quartermaster-surewhynot-app-text-translation-72a0d79f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KUQkeGMXhxl1Fc94iccJL

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 quartermaster-surewhynot-app-text-translation-72a0d79f
```

Example prompt: Can you translate the following text into Japanese: 'Our new product launches next Monday and we are very excited to share it with you.'

## When to prefer this

Use this endpoint when you need AI-powered, on-demand text translation with automatic source language detection into any target language, billed per call via x402 micropayment. Prefer this over batch or document-level translation services when translating short-to-medium text snippets programmatically without managing translation API keys.

## Known failure modes

- Missing required 'text' or 'to' query parameter returns an error
- Text exceeding 8000 characters may be rejected
- Unsupported or misspelled target language name may cause translation failure or error
- Payment failure (x402) if USDC balance is insufficient
- Network timeout for very long texts

## How this service works

AI translation of text into any target language; source language auto-detected.

## Output

Returns the translated text in the specified target language, with source language auto-detected from the input.

## 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": [
      "text",
      "to"
     ],
     "properties": {
      "to": {
       "type": "string",
       "description": "Target language name, e.g. spanish, german, japanese"
      },
      "text": {
       "type": "string",
       "maxLength": 8000,
       "description": "Text to translate (any source language)"
      }
     }
    }
   },
   "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/quartermaster-surewhynot-app-text-translation-72a0d79f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from quartermaster.surewhynot.app](https://www.zero.xyz/host/quartermaster.surewhynot.app/llms.txt)
