# pagos.andreax.dev Document Translator

> pagos.andreax.dev Document Translator is a paid API for AI agents from pagos.andreax.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Translates a long document into any target language using a premium LLM-powered translation service.

## Facts

- Endpoint: GET https://pagos.andreax.dev/api/taller/peaje/traducir-doc
- 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/pagos-andreax-dev-document-translator-519bce60
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Qy6762MH9s3kXtWkwO02n

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 pagos-andreax-dev-document-translator-519bce60
```

Example prompt: Can you translate this entire technical report into Spanish? The document is several pages long and covers our Q3 product roadmap — I need the full text converted accurately.

## When to prefer this

Choose this endpoint when you need to translate long or full documents — not just short snippets — into any target language, especially when quality matters (premium tier). Prefer this over generic short-text translation endpoints when document length is significant and cost per call is acceptable at $0.05 USDC.

## Known failure modes

- Missing or malformed 'input' query parameter returns an error
- Document too long for a single call may be truncated or rejected
- Unsupported target language code may cause unexpected output
- Network timeout for very large documents
- Invalid language specifier in the pipe-separated input format

## How this service works

PREMIUM: traduce un documento largo a cualquier idioma. input='en | <texto largo>'.

## Output

The endpoint returns the full translated text of the input document in the specified target language, processed by a premium LLM-based translation pipeline capable of handling long documents.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "'<idioma_destino> | <documento>'"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pagos-andreax-dev-document-translator-519bce60/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pagos.andreax.dev](https://www.zero.xyz/host/pagos.andreax.dev/llms.txt)
