Skip to content
Eden Engine

Douyin Topic Search & Engagement Stats (by keyword)

omnial/douyin-index-fetch-topic-query

Given a keyword and a date window, returns the Douyin topic-search index for that keyword: every indexed topic that matches, ranked by the platform, with each topic's own item count (posts using it), like count, view/read count, and topic id. A keyword that matches no indexed topic returns just the endpoint's status wrapper rather than an error.

activeper callv1
Provider
Web & Business Data Network
Category
douyin
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": [
    "end_date",
    "keyword",
    "start_date"
  ],
  "properties": {
    "keyword": {
      "type": "string",
      "description": "Topic keyword"
    },
    "app_name": {
      "enum": [
        "aweme",
        "toutiao"
      ],
      "type": "string",
      "default": "aweme",
      "description": "平台/Platform: aweme(抖音), toutiao(头条)"
    },
    "end_date": {
      "type": "string",
      "description": "End date YYYYMMDD"
    },
    "start_date": {
      "type": "string",
      "description": "Start date YYYYMMDD"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "BaseResp": {
      "type": "object",
      "properties": {
        "StatusCode": {
          "type": "number",
          "description": "The endpoint's status code; 0 on both real calls observed."
        },
        "StatusMessage": {
          "type": "string",
          "description": "The endpoint's status message; empty string on both real calls observed."
        }
      },
      "description": "The endpoint's own status wrapper, present on every call observed (matched and no- match alike); its StatusCode is 0 (success) on both real calls.",
      "additionalProperties": true
    },
    "topic_list": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "datetime": {
            "type": "string",
            "description": "A per-topic timestamp field; observed as an empty string on all 99 real entries, so treat an empty string as \"not populated for this topic\" rather than a valid timestamp."
          },
          "digg_cnt": {
            "type": "string",
            "description": "Count of likes on the topic's posts, as a digit string."
          },
          "item_cnt": {
            "type": "string",
            "description": "Count of posts/videos using the topic, as a digit string."
          },
          "topic_id": {
            "type": "string",
            "description": "The platform's numeric topic id (a long digit string, not a phone number) -- the stable identifier for the topic."
          },
          "topic_name": {
            "type": "string",
            "description": "The topic's public label, e.g. a hashtag or a keyword phrase; may itself carry a public figure's name as the topic's subject."
          },
          "topic_index": {
            "type": "string",
            "description": "A numeric string the platform reports alongside the topic; its exact meaning is not documented in the endpoint's schema."
          },
          "play_read_cnt": {
            "type": "string",
            "description": "Count of play/read views across the topic's posts, as a digit string -- a long-digit engagement metric, not a phone number."
          }
        },
        "description": "One indexed topic and its platform-reported engagement counters. All numeric-looking counts are the endpoint's own STRING values, not JSON numbers -- treat them as opaque digit strings from the platform.",
        "additionalProperties": true
      },
      "description": "One entry per indexed topic the keyword matched, ordered by the platform; the one real matched fixture returned 99 entries. Absent entirely on a no-match keyword."
    }
  },
  "description": "The topic-search result, as returned at routing.responseResultPath ($.output). Root shape observed as `{ topic_list: [...], BaseResp: { StatusCode: 0, StatusMessage: \"\" } }` for a keyword with indexed topics, and as `{ BaseResp: { StatusCode: 0, StatusMessage: \"\" } }` alone -- no `topic_list` at all -- for a keyword that matches no indexed topic: the endpoint returns an empty result rather than an error. Nothing in this tool's output is image or URL content.",
  "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 25, 2026