# DeepL Languages List via Locus x402

> DeepL Languages List via Locus x402 is a paid API for AI agents from deepl.x402.paywithlocus.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Returns the list of supported source or target languages available in the DeepL translation API.

## Facts

- Endpoint: POST https://deepl.x402.paywithlocus.com/deepl/languages
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/deepl-languages-list-via-locus-x402-8a0420d4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_E-rM9AUdX5Ufp-lvaPTME

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 deepl-languages-list-via-locus-x402-8a0420d4 -d '<json body>'
```

Example prompt: Can you fetch the full list of target languages that DeepL supports so I can show them in my translation app's language picker?

## When to prefer this

Use this endpoint when you need to enumerate DeepL's supported languages programmatically — e.g. to build a language selector UI, validate a language code before submitting a translation, or discover what languages are available without hardcoding them. Prefer this over scraping DeepL's docs or maintaining a static list.

## Known failure modes

- Invalid 'type' value (not 'source' or 'target') may return an error or default to source languages
- Payment failure if x402 USDC funds are insufficient
- Network timeout from the Locus proxy layer
- DeepL API downtime causing upstream failure

## How this service works

Locus public pay-per-use API

## Output

A JSON object containing an array of supported DeepL languages, each with a language code and name, filtered by type (source or target). Also includes payment metadata such as settled USDC amount and a request ID for tracking.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "type": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "payment": {
   "scheme": "exact",
   "settledUsdc": "0.001000",
   "authorizedMaxUsdc": "0.001000"
  },
  "request": {
   "id": "00000000-0000-4000-8000-000000000000",
   "statusUrl": "/requests/00000000-0000-4000-8000-000000000000"
  },
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/deepl-languages-list-via-locus-x402-8a0420d4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from deepl.x402.paywithlocus.com](https://www.zero.xyz/host/deepl.x402.paywithlocus.com/llms.txt)
