Translate ES ↔ EN
Human-reviewed translation with Central American idiom and legal terms handled correctly.
POST https://api.bottrunk.com/s/translate-es-en
Call it
# Ask. You get a 402 with the payment requirements.
curl https://api.bottrunk.com/s/translate-es-en \
-d '{"url": "https://example.com/pricing"}'
# Pay and retry. Any x402 client does this for you.
curl https://api.bottrunk.com/s/translate-es-en \
-H "X-PAYMENT: <signed USDC transfer>" \
-d '{"url": "https://example.com/pricing"}'
from x402.clients import requests as x402_requests
session = x402_requests.x402_http_adapter(account)
r = session.post(
"https://api.bottrunk.com/s/translate-es-en",
json={"url": "https://example.com/pricing"},
)
print(r.json()["markdown"])
{ "mcpServers": { "bottrunk": { "url": "https://mcp.bottrunk.com" } } }
# then call the tool `translate_es_en` from your agent
Input
| text | string | Up to 2,000 words. |
| direction | string | es-en or en-es. |
Output
| text | string | Translated text. |
| notes | string | Translator notes, if any. |