Skip to content
Eden Engine

Text Translation (TikTok's In-App Translate Engine)

omnial/tiktok-app-fetch-content-translate

Given a short piece of text and a target language code, returns the translated text. Powered by TikTok's own in-app translation engine, so results reflect what a TikTok user would see when tapping 'translate' on a caption or comment -- this is a general-purpose short-text translator, not limited to actual TikTok content.

activeper callv1
Provider
Web & Business Data Network
Category
tiktok
Provider price
$0.0020475 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "src_content"
  ],
  "properties": {
    "trg_lang": {
      "type": "string",
      "default": "zh-Hans",
      "description": "目标语言ISO639-1代码,例如:zh-Hans/ Target language ISO639-1 code, e.g. zh-Hans"
    },
    "src_content": {
      "type": "string",
      "description": "源语言内容,也就是需要翻译的内容/ Source language content, i.e. the content to be translated"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "status_msg": {
      "type": "string",
      "description": "Empty string on both real calls observed (success)."
    },
    "status_code": {
      "type": "number",
      "description": "0 on both real calls observed (success). Non-zero meaning unconfirmed."
    },
    "translated_content_list": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "variant": {
            "type": "string",
            "description": "The translation variant label. Observed as 'default' on both real calls."
          },
          "src_content": {
            "type": "string",
            "description": "Echo of the source text that was translated."
          },
          "translated_content": {
            "type": "string",
            "description": "The translated text, in the requested target language."
          }
        },
        "additionalProperties": true
      },
      "description": "One entry per translation variant. One entry observed on both real calls."
    }
  },
  "description": "The translation result, as returned at routing.responseResultPath ($.output). Both real calibration calls returned exactly one entry in `translated_content_list`; a multi-variant or empty-list shape was never observed.",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.0020475
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 15, 2026