Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic Technology Ltd. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / AI/ML / LibreTranslate API
LibreTranslate API logo

LibreTranslate API

Official vendor OpenAPI document · agent-readyAI/MLLanguage ModelsapiKey7 EndpointsREST

For Agents

Translate text and files between languages, detect a passage's language, and list the language pairs an instance supports.

Use for: I need to translate this text into French, Detect what language this paragraph is written in, List the languages this instance can translate, Translate an uploaded document

Not supported: Does not synthesize speech, transcribe audio, or manage translation memories for teams. Use for machine translation and language detection only.

The LibreTranslate API translates text and files between languages, detects the source language of a passage, and lists the language pairs a given instance supports. It is free and open source, self-hostable, and reachable through public instances, and it accepts translation suggestions that can feed back into its models.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the LibreTranslate API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the LibreTranslate API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Flibretranslate.com%2Flibretranslate" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Flibretranslate.com%2Flibretranslate" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with LibreTranslate API.

Translate text between supported source and target languages

Translate an uploaded file and return the translated document

Detect the language of a passage of text

List the language pairs a given instance supports

Submit a translation suggestion to improve future results

Use Cases

Patterns agents use LibreTranslate API for, with concrete tasks.

★ Agent-driven translation through Jentic

An AI agent handling multilingual input can detect a message's language and translate it into the user's language before responding. Through Jentic the agent finds the detect and translate operations by intent and loads their schemas, so translation happens inline without wiring the LibreTranslate endpoints.

Search Jentic for 'translate text', detect the source language of a message, then translate it into English.

Batch document translation

Translate uploaded documents into a target language and return the translated file. LibreTranslate handles the file translation server-side, so an agent can localize a set of documents without extracting and re-inserting text by hand.

Upload a document and translate it into Spanish, then save the returned translated file.

Language coverage check before routing

List the language pairs a given instance supports before routing a translation request, so an agent can fall back gracefully when a pair is unavailable. The supported-languages list reflects the models loaded on that instance.

List the supported languages for the instance and confirm the target language is available before translating.

Key Endpoints

7 endpoints — the libretranslate api translates text and files between languages, detects the source language of a passage, and lists the language pairs a given instance supports.

METHOD

PATH

DESCRIPTION

POST

/translate

Translate text

POST

/detect

Detect language

GET

/languages

Get supported languages

POST

/translate_file

Translate a file

POST

/suggest

Submit a translation suggestion

POST

/translate

Translate text

POST

/detect

Detect language

GET

/languages

Get supported languages

POST

/translate_file

Translate a file

POST

/suggest

Submit a translation suggestion

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring LibreTranslate by hand means picking an instance, deciding whether a key is needed, and handling both text and file translation flows yourself. Through Jentic you install once, import LibreTranslate from the API Directory, store any key once, and your agent calls it.

Permission scoping

Permission scoping

LibreTranslate carries the text and target language in the request body, so rules bound which operations your agent may call, not which languages. You choose the operations it may call, such as translate and detect, so submitting suggestions is not included unless you add it.

Credential management

Credential isolation

Your LibreTranslate API key is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'translate text' or 'detect a language', and Jentic returns the matching LibreTranslate operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Microsoft Translator

→

Cloud translation across many languages

Choose Microsoft Translator when you want a managed service with broad language coverage and SLAs.

Complementary

Detect Language

→

Standalone language detection service

Use Detect Language when you only need detection and want a dedicated detector.

Complementary

LanguageTool

→

Grammar and style checking across languages

Use LanguageTool to proofread text after translating it.

FAQs

Specific to using LibreTranslate API through Jentic.

What authentication does the LibreTranslate API use?

The LibreTranslate API takes an optional API key per its OpenAPI spec, passed as the api_key query parameter. Public instances may run without a key, while some instances and higher rate tiers ask for one. Through Jentic the key is stored encrypted by your own Jentic One instance and injected at request time.

Is there a LibreTranslate API MCP server?

You don't need an MCP server to give your agent the LibreTranslate API. Jentic connects it directly from the API Directory: import it, store your credential once, and your agent calls it on demand without loading another server's tool definitions into its context.

Can I detect a language with the LibreTranslate API?

Yes. The detect operation returns the most likely source language for a passage of text, which you can pass into the translate operation as the source language or use to route the request.

What are the rate limits for the LibreTranslate API?

Rate limits depend on the instance and are not fixed in the OpenAPI spec; the public instance may rate-limit or require a key. Check the LibreTranslate documentation at https://libretranslate.com for the limits on the instance you use.

Can I limit what my agent is allowed to do with the LibreTranslate API?

Yes. LibreTranslate carries the text and target language in the request body, so rules bound which operations your agent may call. Allow only the translate and detect operations, so the agent can localize text but cannot submit translation suggestions unless you add that operation.

How do I translate text with the LibreTranslate API through Jentic?

Search Jentic for 'translate text', load the translate operation, and pass the text with source and target languages. Jentic injects the key when the instance needs one. To run it on your own infrastructure, install Jentic One from its GitHub repo.

GET STARTED

Start building with LibreTranslate API

Explore with Jentic One
View OpenAPI Document