# Google Translate via auor.io (Oreo)

> Google Translate via auor.io (Oreo) is a paid API for AI agents from api.auor.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Translates text from one language to another using Google Translate via the x402 payment protocol

## Facts

- Endpoint: POST https://api.auor.io/google-translate/v1/translate
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/google-translate-via-auor-io-text-translation-6636fed6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NcS8b7LyA1NEpGgGwA7aa

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 google-translate-via-auor-io-text-translation-6636fed6 -d '<json body>'
```

Example prompt: Translate the following text into Spanish: 'The meeting has been rescheduled to next Monday at 3pm. Please update your calendars accordingly.'

## When to prefer this

Choose this endpoint when you need reliable, high-quality machine translation powered by Google Translate, without requiring an account or subscription — paying only per call via the x402 protocol. Ideal for AI agents that need on-demand, pay-as-you-go translation without API key management.

## Known failure modes

- Unsupported language pair returns an error or empty translation
- Malformed request body (missing required fields) returns a 400 validation error
- Payment failure or insufficient funds returns a 402 response blocking the request
- Empty or null input text returns an error
- Very long texts may exceed API limits and return a size error
- Network timeout or upstream Google Translate service unavailability returns a 503

## How this service works

Translate text from one language to another

## Output

The translated text in the target language, along with metadata such as the detected source language and translation confidence from the Google Translate API.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body",
    "method"
   ],
   "properties": {
    "body": {
     "$ref": "https://api.auor.io/schemas/google-translate/v1/translate/input.json",
     "$schema": "https://json-schema.org/draft/2020-12/schema"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/google-translate-via-auor-io-text-translation-6636fed6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.auor.io](https://www.zero.xyz/host/api.auor.io/llms.txt)
