Register, pay the exact USDT-TRC20 order amount, then create a protected API key and bind your server IP.
POST https://www.myranslate.com/v1/translate
Authorization: Bearer my_live_...
{"q":"Hello","source":"en","target":"zh"}
The console always shows the next required action.
Register with email and password, then enter the console.
Create a 60-minute TRC20 order and send the exact unique amount shown.
Confirmed payment is detected automatically and adds 30 days.
Save the one-time key on your server and bind its public egress IP.
No monthly character quota. Fair-use limits protect stable service: 20 requests/second, 8 concurrent requests and 20,000 characters/request.
TRC20 only. The order adds a small unique suffix; always send the exact amount displayed in the console.
POST https://www.myranslate.com/v1/translate
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" })
});
Optional. Same demo translator as this page, for people who want a window instead of a browser tab.