Skip to content
Eden Engine

TikTok Video Metrics (Views, Likes, Comments, Favorites by Video ID)

omnial/tiktok-analytics-fetch-video-metrics

Given a TikTok video id, returns that video's view, like, comment, and favorite counts, an optional 14-day daily trend for each of those counts, and a short engagement summary blurb when one is available.

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": [
    "item_id"
  ],
  "properties": {
    "item_id": {
      "type": "string",
      "examples": [
        "7502551047378832671"
      ],
      "description": "Video id"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "likes": {
      "type": "object",
      "properties": {
        "total": {
          "type": "number"
        },
        "dailyTrend": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "day": {
                "type": "object",
                "properties": {
                  "timestamp": {
                    "type": "number"
                  }
                },
                "additionalProperties": true
              },
              "value": {
                "type": "number"
              }
            },
            "additionalProperties": true
          }
        }
      },
      "description": "Like count for the video, same shape as `views`.",
      "additionalProperties": true
    },
    "views": {
      "type": "object",
      "properties": {
        "total": {
          "type": "number"
        },
        "dailyTrend": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "day": {
                "type": "object",
                "properties": {
                  "timestamp": {
                    "type": "number",
                    "description": "Unix seconds for that day."
                  }
                },
                "additionalProperties": true
              },
              "value": {
                "type": "number",
                "description": "Count for that day, when reported."
              }
            },
            "additionalProperties": true
          },
          "description": "A daily breakdown for roughly the last 14 days, only present when the upstream provider has trend data for this video -- absent entirely on one of the two real fixtures calibrated (a well-established video with no recent trend data offered). Individual days can be missing their `value` (no count reported for that day) rather than reporting zero."
        }
      },
      "description": "View count for the video.",
      "additionalProperties": true
    },
    "item_id": {
      "type": "string",
      "description": "The TikTok video id this call was made for."
    },
    "summary": {
      "type": "object",
      "properties": {
        "title": {
          "type": "string",
          "description": "e.g. 'Overview'."
        },
        "content": {
          "type": "string"
        }
      },
      "description": "A short engagement insight blurb about the video (e.g. comparing it to other posts). Entirely absent -- not present as an empty object -- when the upstream provider has no summary available for this video; confirmed absent on one of the two real fixtures calibrated (an edge-case video id).",
      "additionalProperties": true
    },
    "comments": {
      "type": "object",
      "properties": {
        "total": {
          "type": "number"
        },
        "dailyTrend": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "day": {
                "type": "object",
                "properties": {
                  "timestamp": {
                    "type": "number"
                  }
                },
                "additionalProperties": true
              },
              "value": {
                "type": "number"
              }
            },
            "additionalProperties": true
          }
        }
      },
      "description": "Comment count for the video, same shape as `views`.",
      "additionalProperties": true
    },
    "favorites": {
      "type": "object",
      "properties": {
        "total": {
          "type": "number"
        },
        "dailyTrend": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "day": {
                "type": "object",
                "properties": {
                  "timestamp": {
                    "type": "number"
                  }
                },
                "additionalProperties": true
              },
              "value": {
                "type": "number"
              }
            },
            "additionalProperties": true
          }
        }
      },
      "description": "Save/favorite count for the video, same shape as `views`.",
      "additionalProperties": true
    }
  },
  "description": "The video's metrics, as returned at routing.responseResultPath ($.output). Both calibration fixtures returned populated counts for a real video id -- an invalid or nonexistent video id's behavior beyond the one edge-case id observed is unconfirmed (see verification.notes).",
  "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