www.myranslate.com

Translation API for your servers.

Register, pay the exact USDT-TRC20 order amount, then create a protected API key and bind your server IP.

IP-bound keys Automatic activation Source text is not logged
POST https://www.myranslate.com/v1/translate
Authorization: Bearer my_live_...

{"q":"Hello","source":"en","target":"zh"}
0 / 1000
From registration to live API

Four clear steps

The console always shows the next required action.

1

Create an account

Register with email and password, then enter the console.

2

Pay the exact amount

Create a 60-minute TRC20 order and send the exact unique amount shown.

3

Automatic activation

Confirmed payment is detected automatically and adds 30 days.

4

Create key and bind IP

Save the one-time key on your server and bind its public egress IP.

One plan

No monthly character quota. Fair-use limits protect stable service: 20 requests/second, 8 concurrent requests and 20,000 characters/request.

  • 200 USDT base price · 30 days · unlimited monthly characters
  • One server IP per account. You can change it.
  • The full key is shown once. Save it to /etc/c2/moying-translate.key
Monthly
200 USDT / 30 days
  • Unlimited monthly characters
  • 20 req/s · 8 concurrent
  • API + web + desktop
Get API Key

TRC20 only. The order adds a small unique suffix; always send the exact amount displayed in the console.

Call the API

POST https://www.myranslate.com/v1/translate

  • The API key must be sent from the bound server IP.
  • The full key is displayed once and can be rotated later.
  • Expired subscriptions return subscription_expired.
fetch("https://www.myranslate.com/v1/translate", {
  method: "POST",
  headers: {
    "Content-Type": "application/json",
    "Authorization": "Bearer my_live_..."
  },
  body: JSON.stringify({ q: "Hello!", source: "en", target: "zh" })
});

Desktop apps

Optional. Same demo translator as this page, for people who want a window instead of a browser tab.