Skip to content
Eden Engine

Douyin Related Posts (by Video ID)

omnial/douyin-web-fetch-related-posts

Given a Douyin video id, returns the posts Douyin recommends alongside it: each with the post's own id, caption and title text, creator name, publish time, duration, engagement counts (plays, likes, comments, shares, collects), the music used, and whether the post is still available, plus a paging flag for more results. A video id that matches no video still returns a recommendation set rather than an error, and image/video/share URLs are withheld.

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": [
    "aweme_id"
  ],
  "properties": {
    "count": {
      "type": "integer",
      "default": 20,
      "description": "Number"
    },
    "aweme_id": {
      "type": "string",
      "examples": [
        "7393365489105358132"
      ],
      "description": "Video id"
    },
    "refresh_index": {
      "type": "integer",
      "default": 1,
      "description": "Paging index"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "has_more": {
      "type": "number",
      "description": "Paging flag: 1 when more related posts are available behind a higher refresh_index."
    },
    "aweme_list": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "desc": {
            "type": "string",
            "description": "The post's description text."
          },
          "music": {
            "type": "object",
            "properties": {
              "title": {
                "type": "string",
                "description": "The audio's title; on original-sound posts it embeds the creating author's handle, e.g. an author credit followed by 'original sound'."
              },
              "author": {
                "type": "string",
                "description": "The audio's credited author display name."
              }
            },
            "description": "The audio track the post uses.",
            "additionalProperties": true
          },
          "author": {
            "type": "object",
            "properties": {
              "nickname": {
                "type": "string",
                "description": "The post author's public display name."
              }
            },
            "description": "Who published the related post.",
            "additionalProperties": true
          },
          "status": {
            "type": "object",
            "properties": {
              "is_delete": {
                "type": "boolean",
                "description": "false when the post is live; true when the returned post has been taken down."
              }
            },
            "description": "Availability flags for the post.",
            "additionalProperties": true
          },
          "caption": {
            "type": "string",
            "description": "The post's caption text, often carrying hashtag text."
          },
          "aweme_id": {
            "type": "string",
            "description": "The related post's own Douyin video id (a numeric string), distinct from the id you queried -- use it to fetch that post's own details or its own related set."
          },
          "duration": {
            "type": "number",
            "description": "Playback duration in milliseconds."
          },
          "item_title": {
            "type": "string",
            "description": "The post's display title."
          },
          "statistics": {
            "type": "object",
            "properties": {
              "digg_count": {
                "type": "number",
                "description": "Likes received. e.g. 140587 on the first related post of the calibration set."
              },
              "play_count": {
                "type": "number",
                "description": "Play count Douyin reports (observed as 0 on the calibration set's entries)."
              },
              "share_count": {
                "type": "number",
                "description": "Times shared."
              },
              "collect_count": {
                "type": "number",
                "description": "Times collected/saved."
              },
              "comment_count": {
                "type": "number",
                "description": "Comments received."
              },
              "recommend_count": {
                "type": "number",
                "description": "Recommendation-driven engagements."
              }
            },
            "description": "Engagement counts Douyin reports for the post.",
            "additionalProperties": true
          },
          "create_time": {
            "type": "number",
            "description": "Publish time, Unix seconds."
          }
        },
        "additionalProperties": true
      },
      "description": "One entry per related post. 10 entries on both calibration fixtures -- a populated set even when the queried id matches no video."
    }
  },
  "description": "The related-posts document, as produced by the field map at routing.responseResultPath ($.output): `{ aweme_list: [...], has_more: <number> }`.",
  "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