# DataVault Text Translation

> DataVault Text Translation is a paid API for AI agents from zetavault.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 processing, with optional source language specification

## Facts

- Endpoint: POST https://zetavault.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-text-translation-dcfb11fc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O0T1KcOCMPoNdP5udjPMT

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-text-translation-dcfb11fc -d '<json body>'
```

Example prompt: Translate this text to French using DataVault: 'Welcome to our store, we hope you enjoy your experience today.' The source language is English.

## When to prefer this

Choose this endpoint when you need pay-per-call text translation without a subscription, especially when using USDC on Base for micropayments. It is well-suited for agents that occasionally need to translate short-to-medium text snippets without committing to a translation API subscription.

## Known failure modes

- Missing required 'text' field returns a validation error
- Missing required 'target_language' field returns a validation error
- Unsupported language code may return an error or empty result
- Very long text inputs may time out or be truncated
- Invalid or unrecognized language codes may cause the translation to fail
- Payment failure via x402 prevents the call from completing

## 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 indicating whether the translation succeeded and a 'data' object containing the translated text output.

## 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-text-translation-dcfb11fc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetavault.vercel.app](https://www.zero.xyz/host/zetavault.vercel.app/llms.txt)
