Skip to content
Eden Engine

Douyin Series Video List Lookup (by series id)

omnial/douyin-app-fetch-series-video-list

Given a Douyin series id, returns that series' page of videos plus pagination cursors (`has_more`, `max_cursor`, `min_cursor`) and a status/filter-reason explaining why the page came back empty when it does. Observed calibration calls returned no video items -- see this tool's usage notes for what that means for a caller.

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": [
    "series_id"
  ],
  "properties": {
    "cursor": {
      "type": "integer",
      "default": 0,
      "description": "Cursor"
    },
    "series_id": {
      "type": "string",
      "examples": [
        "7592054624643713067"
      ],
      "description": "Series id"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "has_more": {
      "type": "number",
      "description": "1 when a further page exists, 0 otherwise. Present only alongside a real page."
    },
    "aweme_list": {
      "type": "null",
      "description": "The page's video items. Observed as `null` on every calibration fixture (once for a fully-filtered real series, once for an invalid series id); a populated array shape has not been confirmed against a real response."
    },
    "max_cursor": {
      "type": "number",
      "description": "Pass as the next call's `cursor` to fetch the following page."
    },
    "min_cursor": {
      "type": "number",
      "description": "The page's starting cursor."
    },
    "status_msg": {
      "type": "string",
      "description": "Empty string on success; a short error message (may be in Chinese) on error."
    },
    "fail_reason": {
      "type": "string",
      "description": "Why the page came back empty or failed, e.g. a series-level content filter or an invalid series id. Empty string when not applicable."
    },
    "status_code": {
      "type": "number",
      "description": "0 on a well-formed request (even one with an empty page); nonzero on error."
    },
    "item_filter_reasons": {
      "type": "string",
      "description": "A JSON-encoded object mapping each filtered item's own id to the reason it was left out of `aweme_list`, when any items were filtered. Present only alongside a real page."
    }
  },
  "description": "The series page, as returned at routing.responseResultPath ($.output). Both calibration fixtures returned `aweme_list: null` -- one because Douyin's own series filter excluded every item on that page, the other because the given series id was invalid -- so a populated video list has not been directly observed.",
  "additionalProperties": false
}

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 23, 2026