Smartcat SmartTranslation API

The SmartTranslation API from Smartcat — 1 operation(s) for smarttranslation.

Operations 1

POST /api/integration/v1/smartTranslation/translate Fetch translation See the Smart Translation API guide [here](https://developers.smartcat.com/api-guides/#instant-translations-via-the-real-time-api)

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/smartcat-smarttranslation-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 email required.

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

OpenAPI Specification

smartcat-smarttranslation-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Smartcat Account Smart Translation API
  version: v1
servers:
- url: /
tags:
- name: SmartTranslation
paths:
  /api/integration/v1/smartTranslation/translate:
    post:
      tags:
      - SmartTranslation
      summary: 'Fetch translation

        See the Smart Translation API guide [here](https://developers.smartcat.com/api-guides/#instant-translations-via-the-real-time-api)'
      requestBody:
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SmartTranslationRequest'
          application/json:
            schema:
              $ref: '#/components/schemas/SmartTranslationRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/SmartTranslationRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SmartTranslationRequest'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SmartTranslationResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/SmartTranslationResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/SmartTranslationResponse'
components:
  schemas:
    SmartTranslationResponse:
      type: object
      properties:
        translations:
          type:
          - object
          - 'null'
          additionalProperties:
            type:
            - array
            - 'null'
            items:
              $ref: '#/components/schemas/SmartTranslationResult'
          description: Translation results grouped by the target language
      additionalProperties: false
      description: Successful response to a translation request
    SmartTranslationRequest:
      required:
      - sourceLanguage
      - targetLanguages
      - texts
      type: object
      properties:
        sourceLanguage:
          minLength: 1
          type: string
          description: Source language
        targetLanguages:
          maxItems: 2147483647
          minItems: 1
          type: array
          items:
            type: string
          description: Target languages
        profile:
          type:
          - string
          - 'null'
          description: Translation profile ID
        isHtml:
          type: boolean
          description: Indicates whether the source text is in HTML format
        texts:
          maxItems: 2147483647
          minItems: 1
          type: array
          items:
            $ref: '#/components/schemas/SmartTranslationText'
          description: Translation text entry
        externalTag:
          type:
          - string
          - 'null'
          description: External system tag
      additionalProperties: false
      description: Translation request
    SmartTranslationResult:
      type: object
      properties:
        translation:
          type:
          - string
          - 'null'
          description: Translation.
        error:
          type: boolean
          description: Error flag.
        segmentMetadata:
          type:
          - string
          - 'null'
          description: Optional opaque per-segment metadata associated with the translated text. Null when absent.
      additionalProperties: false
      description: Translation result.
    SmartTranslationText:
      required:
      - text
      type: object
      properties:
        text:
          minLength: 1
          type: string
          description: Text
        context:
          type:
          - string
          - 'null'
          description: Translation context
      additionalProperties: false
      description: Translation text