Text Analysis — entry 010 of 14
LibreTranslate
LibreTranslate is the open-source machine-translation engine's hosted API, translating text across dozens of languages without routing data through a third-party cloud vendor. The public libretranslate.com instance now requires an API key issued through its billing portal, with a free tier plus metered paid plans for higher volume.
AuthenticationAPI KeySign up with the provider to obtain credentials.
HTTPSSupportedTraffic is encrypted in transit.
CORSEnabledCallable directly from browser JavaScript.
PricingFreemiumA usable free tier exists, with paid plans for more volume.
FormatsJSONResponses can be requested as JSON.
GreatAPIs Score
Score81
Authentication15/25API key required
Pricing17/20Freemium tier available
Docs20/20Machine-readable spec file bundled
Formats9/15Single response format
Freshness20/20Verified within 6 months
Auth quickstart
- Sign up with the provider to get an API key.
- Send it on every request as a header
Authorization: <key> - The exact header isn't documented — Authorization is a common default; confirm in the provider's docs.
Stored keyNo key stored
Your key is stored only in this browser (localStorage) and sent directly to the API — never to greatapis.
Endpoints
misc3
GET/frontend/settingsRetrieve Frontend Settings
Responses
| Status | Description | Schema |
|---|---|---|
200 | frontend settings | frontend-settings |
GET/healthHealth Check
Responses
| Status | Description | Schema |
|---|---|---|
200 | Service is healthy | health-response |
POST/suggestSubmit a Suggestion to Improve a Translation
Responses
| Status | Description | Schema |
|---|---|---|
200 | Success | suggest-response |
403 | Not authorized | error-response |
translate4
POST/detectDetect Language of Text
Responses
| Status | Description | Schema |
|---|---|---|
200 | Detections | detections |
400 | Invalid request | error-response |
403 | Banned | error-response |
429 | Slow down | error-slow-down |
500 | Detection error | error-response |
GET/languagesGet Supported Languages
Responses
| Status | Description | Schema |
|---|---|---|
200 | List of supported languages | languages |
POST/translateTranslate Text
Responses
| Status | Description | Schema |
|---|---|---|
200 | Translation | translate |
400 | Invalid request | error-response |
403 | Banned | error-response |
429 | Slow down | error-slow-down |
500 | Translation error | error-response |
POST/translate_fileTranslate a File
Responses
| Status | Description | Schema |
|---|---|---|
200 | Translated file | translate-file |
400 | Invalid request | error-response |
403 | Banned | error-response |
429 | Slow down | error-slow-down |
500 | Translation error | error-response |
Try it
Developer reference
Base URL
https://libretranslate.comKey endpoints
- GET/languages
- GET/health
- POST/translate
- POST/detect
Changelog
- gained a docs link