# pagos.andreax.dev Text Translation API

> pagos.andreax.dev Text Translation API 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 text into any target language using a simple 'target_language | text' input format

## Facts

- Endpoint: GET https://pagos.andreax.dev/api/taller/peaje/traducir-a
- 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-translation-api-583f4dad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uwFDqHgqR_WEtPrrVZJFi

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-translation-api-583f4dad
```

Example prompt: Translate 'Hello, how are you today?' into French for me.

## When to prefer this

Choose this endpoint when you need a simple, pay-per-use text translation API without OAuth or API key setup, especially suited for lightweight automation, agent workflows, or low-volume translation tasks where the straightforward 'language | text' input format is convenient. It is a good fit for quick integrations via the x402 micropayment protocol at $0.003 per call.

## Known failure modes

- Missing or malformed 'input' query parameter returns an error
- Unsupported or unrecognized language code may fail or produce unexpected results
- Very long texts may exceed processing limits
- Ambiguous language code could result in wrong language being used
- Network timeout for large translation requests

## How this service works

Traduce a cualquier idioma. input='en | Hola mundo' (idioma destino | texto).

## Output

Returns the translated text in the requested target language. The response contains the translation of the provided input text rendered in the specified destination 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": "'<idioma_destino> | <texto>'"
      }
     }
    }
   },
   "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-translation-api-583f4dad/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)
