LibreTranslate misc API

The misc API from LibreTranslate — 3 operation(s) for misc.

Operations 3

GET /health Health Check
POST /suggest Submit a Suggestion to Improve a Translation
GET /frontend/settings Retrieve Frontend Settings

Documentation

Specifications

Schemas & Data

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/libre-translate-misc-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

libre-translate-misc-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: LibreTranslate Misc API
  version: 1.9.6
  description: Free and Open Source Machine Translation API.
  license:
    name: AGPL-3.0
servers:
- url: /
tags:
- name: misc
paths:
  /health:
    get:
      summary: Health Check
      tags:
      - misc
      responses:
        '200':
          description: Service is healthy
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/health-response'
  /suggest:
    post:
      summary: Submit a Suggestion to Improve a Translation
      tags:
      - misc
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/suggest-response'
        '403':
          description: Not authorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/error-response'
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                q:
                  description: Original text
                s:
                  description: Suggested translation
                source:
                  description: Language of original text
                target:
                  description: Language of suggested translation
              required:
              - q
              - s
              - source
              - target
  /frontend/settings:
    get:
      summary: Retrieve Frontend Settings
      tags:
      - misc
      responses:
        '200':
          description: frontend settings
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/frontend-settings'
components:
  schemas:
    frontend-settings:
      type: object
      properties:
        apiKeys:
          type: boolean
          description: Whether the API key database is enabled.
        keyRequired:
          type: boolean
          description: Whether an API key is required.
        charLimit:
          type: integer
          description: Character input limit for this language (-1 indicates no limit)
        frontendTimeout:
          type: integer
          description: Frontend translation timeout
        suggestions:
          type: boolean
          description: Whether submitting suggestions is enabled.
        supportedFilesFormat:
          type: array
          description: Supported files format
          items:
            type: string
        language:
          type: object
          properties:
            source:
              type: object
              properties:
                code:
                  type: string
                  description: Language code
                name:
                  type: string
                  description: Human-readable language name (in English)
            target:
              type: object
              properties:
                code:
                  type: string
                  description: Language code
                name:
                  type: string
                  description: Human-readable language name (in English)
    error-response:
      type: object
      properties:
        error:
          type: string
          description: Error message
    suggest-response:
      type: object
      properties:
        success:
          type: boolean
          description: Whether submission was successful
    health-response:
      type: object
      properties:
        status:
          type: string
          description: Health status
          example: ok