# DataVault Translate

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

Translates text from one language to another using AI-powered text processing, with optional source language specification.

## Facts

- Endpoint: POST https://zetdatavault.vercel.app/api/translate
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datavault-translate-750389eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MuE1eyOzCf-uZs-l8oJtV

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 datavault-translate-750389eb -d '<json body>'
```

Example prompt: Translate this text to French: 'Welcome to our store, we hope you enjoy your visit and find everything you need today.'

## When to prefer this

Use this endpoint when you need quick, pay-per-call AI-powered text translation without committing to a subscription, especially in agentic workflows requiring multilingual output on Base/USDC payment infrastructure.

## Known failure modes

- Unsupported target language returns an error or empty translation
- Missing required 'text' or 'target_language' fields causes a 400-level error
- Very long text inputs may be truncated or rejected
- Source language mis-specified may cause incorrect translation
- Payment failure (USDC/x402) results in 402 Payment Required before translation is attempted

## How this service works

54 endpoints spanning local tools, live data feeds, and AI-powered text processing. Pay-per-call with USDC on Base.

## Output

Returns a JSON object with a success boolean and a data object containing the translated text in the specified target language.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text",
  "target_language"
 ],
 "properties": {
  "text": {
   "type": "string"
  },
  "source_language": {
   "type": "string"
  },
  "target_language": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

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