# pagos.andreax.dev Text-to-English Translator

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

Translates any input text into fluent, natural English using a language model.

## Facts

- Endpoint: GET https://pagos.andreax.dev/api/taller/peaje/traducir-en
- Price: $0.003/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-text-to-english-translator-73234d3b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4A8At8ykTlvd0vne0s70x

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-text-to-english-translator-73234d3b
```

Example prompt: Can you translate this text into natural, fluent English: "Bonjour, je voudrais réserver une table pour ce soir à 20h."

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call translation to natural English from any language, especially in agentic workflows processing multilingual user input, forms, or content, and you want to avoid the complexity of integrating a full-scale translation service like Google Translate or DeepL.

## Known failure modes

- Missing 'input' query parameter returns an error
- Empty or whitespace-only input may produce an empty or trivial translation
- Very long texts may be truncated or rejected
- Ambiguous or low-quality input text may yield inaccurate translations
- Non-text or binary input may cause a processing error

## How this service works

Traduce un texto a inglés natural y fluido. input=texto en cualquier idioma.

## Output

Returns a fluent, natural English translation of the provided input text, regardless of the original source language.

## 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": "texto a traducir"
      }
     }
    }
   },
   "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-text-to-english-translator-73234d3b/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)
