# Prysm DeepL Translation Provider

> Prysm DeepL Translation Provider is a paid API for AI agents from prysm-kappa.vercel.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-13).

Translates text from one language to another using DeepL's translation engine, accessed via Prysm's x402-payment-gated API proxy on Base mainnet.

## Facts

- Endpoint: POST https://prysm-kappa.vercel.app/api/v1/providers/deepl
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/prysm-deepl-translation-provider-8c580673
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EgtlHBk4B6Ad1yrSLF985

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 prysm-deepl-translation-provider-8c580673 -d '<json body>'
```

Example prompt: Translate the following text into French using DeepL: 'Our new product launch is scheduled for next Monday and we are very excited to share it with you.'

## When to prefer this

Choose this endpoint when you need high-quality neural machine translation powered by DeepL, accessible via a pay-per-call x402 micropayment model on Base mainnet without managing a separate DeepL API key. It is ideal for AI agents that need on-demand translation with crypto-native payment rails, especially in workflows where USDC microtransactions are already in use.

## Known failure modes

- Unsupported language pair — DeepL may not support certain language combinations, resulting in an error
- Invalid operation name — only allowlisted operations are accepted; unrecognized operation strings will be rejected
- Malformed input object — missing required fields like target language or source text may cause a processing error
- Payment failure — insufficient USDC balance or x402 payment not accepted on Base mainnet
- Rate limiting or quota exceeded on the underlying DeepL API
- Empty or null text input causing DeepL to return an empty translation

## How this service works

Prysm sells paid, agent-ready provider capabilities over x402 on Base mainnet using USDC.

## Output

A JSON object containing a 'data' field with the DeepL translation result (translated text and associated metadata), a 'provider' field set to 'deepl', and an 'operation' field set to 'translate'.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "description": "Provider-specific operation parameters.",
   "additionalProperties": true
  },
  "operation": {
   "type": "string",
   "description": "Allowlisted operation for the selected provider."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "provider": "deepl",
  "operation": "translate"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/prysm-deepl-translation-provider-8c580673/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from prysm-kappa.vercel.app](https://www.zero.xyz/host/prysm-kappa.vercel.app/llms.txt)
