Skip to content
Eden Engine

Douyin Video Index Trend (by Video ID & Date Window)

omnial/douyin-index-fetch-item-index

Given a Douyin video ID and a date window (YYYYMMDD start and end), returns that video's daily index trend -- a per-day activity score for every date in the window -- plus the window's average index value.

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",
    "item_id",
    "start_date"
  ],
  "properties": {
    "item_id": {
      "type": "string",
      "description": "Video ID (Douyin aweme id, numeric). Example: 7660090930283744575"
    },
    "end_date": {
      "type": "string",
      "description": "End date YYYYMMDD"
    },
    "start_date": {
      "type": "string",
      "description": "Start date YYYYMMDD"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "avg": {
      "type": "string",
      "description": "The average index value across the requested date window, as a numeric string (e.g. \"152\" on a live window, \"0\" on a pre-publication one)."
    },
    "trend": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "value": {
            "type": "string",
            "description": "The video's index/activity score for that date, as a numeric string (e.g. \"2008\", \"0\"). Zero on dates outside the video's active window."
          },
          "datetime": {
            "type": "string",
            "description": "The date, YYYYMMDD."
          }
        },
        "additionalProperties": true
      },
      "description": "One entry per date in the requested window, inclusive of start and end. Length equals the number of calendar days in the window (62 entries for a 20260701-20260831 call, 59 for a 20260101-20260228 call)."
    }
  },
  "description": "The video's index trend record, as returned at routing.responseResultPath ($.output). Both observed fixtures return the same shape: an `avg` period average and a `trend` array with one entry per date in the requested window.",
  "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