Translate
Integrate Translate in minutes — REST API, WordPress plugin, and embed widgets.
Overview
The Translate API is a brand-safe, glossary-aware machine translation service covering 46 languages. It preserves your brand names, product names, and tone via rules you configure in the dashboard.
Quick start
POST the source text and a target language code. The response contains the translated string plus metadata about the glossary matches that were applied.
curl -X POST https://translate.api.jetweb.app/api/translate \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"text": "Welcome to our site",
"target_lang": "de"
}'
Authentication
Every API endpoint requires a Bearer token. Generate one in the dashboard under "API Keys" for the relevant product. Keep tokens server-side — never commit them to public repositories or ship them in frontend bundles.
Authorization: Bearer YOUR_API_KEY
Endpoints
Base URL: https://translate.api.jetweb.app
/api/translate
/api/translate/batch
/api/languages
/api/usage
Integrations
The WordPress plugin auto-translates pages, posts, and custom post types. For headless or custom sites, call the REST API from your build pipeline or at request time.