# WhatChuNeed LLM Translate

> WhatChuNeed LLM Translate is a paid API for AI agents from whatchuneed.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Translates text from one language to another using an LLM-backed translation endpoint, returning the translated text, detected source language, and confidence score.

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/llm/translate
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whatchuneed-llm-translate-e887813e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O-O1s3D-DgvYDfp-NTwIO

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 whatchuneed-llm-translate-e887813e -d '<json body>'
```

Example prompt: Translate the following text to French: 'The meeting has been rescheduled to Thursday afternoon. Please update your calendars.' — auto-detect the source language.

## When to prefer this

Choose this endpoint when you need pay-per-call LLM-powered translation with automatic source language detection and a confidence score, especially in agentic workflows where you pay only for what you use via x402 USDC micropayments and don't want to manage a dedicated translation API subscription.

## Known failure modes

- Unsupported target language code returns an error or empty result
- Very short or ambiguous text may produce low confidence scores
- Source language auto-detection may fail for mixed-language or code-heavy input
- Network or payment authorization failures may return 402 or 5xx errors
- Extremely long texts may be truncated or time out

## How this service works

320+ pay-per-call API endpoints across accommodation, LLM, code execution, crypto, medical, finance, and more. One API, one payment. Powered by x402 protocol.

## Output

Returns a JSON object containing the translated text string, the detected or specified source language code, the target language code, and a numeric confidence score (0–1) indicating translation reliability.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text",
  "target"
 ],
 "properties": {
  "text": {
   "type": "string"
  },
  "source": {
   "type": "string"
  },
  "target": {
   "type": "string",
   "description": "Target language code"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "confidence": {
   "type": "number"
  },
  "translated": {
   "type": "string"
  },
  "source_language": {
   "type": "string"
  },
  "target_language": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whatchuneed-llm-translate-e887813e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from whatchuneed.vercel.app](https://www.zero.xyz/host/whatchuneed.vercel.app/llms.txt)
