# ClearCheck Translation

> ClearCheck Translation is a paid API for AI agents from loonie-toll.onrender.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Translates a text passage into a specified target language, preserving meaning without commentary or transliteration notes.

## Facts

- Endpoint: GET https://loonie-toll.onrender.com/translate
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clearcheck-translation-0a18bab0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yeDoVlhZyYsh4RIEU9YR4

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 clearcheck-translation-0a18bab0
```

Example prompt: Translate this passage into French for me: 'The quick brown fox jumps over the lazy dog. It happened on a quiet Tuesday morning near the old bridge.' — just the translation, no notes.

## When to prefer this

Choose this endpoint when you need a clean, direct translation of a text passage (up to 6000 characters) into a named target language with no extra commentary, transliteration notes, or formatting artifacts — especially in agentic workflows that require pure translated output for downstream processing.

## Known failure modes

- Missing 'text' or 'to' query parameter returns an error
- Text exceeding 6000 characters may be rejected or truncated
- Unsupported or misspelled target language name may cause a failure or unexpected output
- Payment not fulfilled results in a 402 error
- Network timeout on the render.com host during cold start

## How this service works

Translate a passage into a target language. Meaning preserved, no commentary, no transliteration notes.

## Output

Returns the translated text in the target language, the detected source language, the target language, the AI model used for translation, an input character count, and a disclaimer — no transliteration notes or explanatory commentary.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "text",
      "to"
     ],
     "properties": {
      "to": {
       "type": "string",
       "description": "Target language, e.g. Spanish, French, Japanese"
      },
      "text": {
       "type": "string",
       "description": "The text to work on. 6000 characters maximum."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "to": {
       "type": "string"
      },
      "model": {
       "type": "string"
      },
      "source": {
       "type": "string"
      },
      "verdict": {
       "type": "string"
      },
      "disclaimer": {
       "type": "string"
      },
      "inputChars": {
       "type": "integer"
      },
      "translation": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clearcheck-translation-0a18bab0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from loonie-toll.onrender.com](https://www.zero.xyz/host/loonie-toll.onrender.com/llms.txt)
