Skip to content
Eden Engine

Douyin Live Room Lookup (by Room/Webcast ID)

omnial/douyin-web-fetch-user-live-videos

Given a Douyin live room's webcast_id, returns the room's status, title, viewer count, and like count, plus the room owner's Douyin profile: nickname, account ID, secure UID, avatar images, and whether the calling account already follows them. Confirmed against two real rooms, including one whose owner account nickname shows it has since been deactivated.

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": [
    "webcast_id"
  ],
  "properties": {
    "webcast_id": {
      "type": "string",
      "examples": [
        "376034101029"
      ],
      "description": "Room webcast_id"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "data": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "title": {
                "type": "string",
                "description": "The room's title."
              },
              "id_str": {
                "type": "string",
                "description": "The room's own id, matching `enter_room_id`."
              },
              "status": {
                "type": "number",
                "description": "Numeric room status code; `4` observed on both real fixtures, including the deactivated-owner room -- the vendor does not document this enum, so a caller should not assume `4` universally means 'ended'."
              },
              "like_count": {
                "type": "number",
                "description": "`0` observed on both fixtures."
              },
              "status_str": {
                "type": "string",
                "description": "String copy of `status`."
              },
              "mosaic_status": {
                "type": "number",
                "description": "Whether content-moderation blur/mosaic is applied to the stream. `0` (no mosaic) observed on both real fixtures."
              },
              "user_count_str": {
                "type": "string",
                "description": "Current viewer count, as a string. `\"0\"` observed on both fixtures."
              },
              "mosaic_status_str": {
                "type": "string",
                "description": "String copy of `mosaic_status`."
              },
              "owner_user_id_str": {
                "type": "string",
                "description": "Empty string on both real fixtures -- the room owner's populated account id is reliably available instead at `data.user.id_str`."
              },
              "has_commerce_goods": {
                "type": "boolean",
                "description": "Whether the room has shoppable goods attached. `false` on both fixtures."
              }
            },
            "additionalProperties": true
          },
          "description": "One entry on both real calls observed, describing the live room itself."
        },
        "user": {
          "type": "object",
          "properties": {
            "id_str": {
              "type": "string",
              "description": "The owner account's numeric Douyin user id."
            },
            "sec_uid": {
              "type": "string",
              "description": "The owner account's opaque, stable secure user id."
            },
            "nickname": {
              "type": "string",
              "description": "The owner account's public display name. Observed as a real handle on one fixture and the literal string '账号已注销' (account deactivated/canceled) on the other -- a real, distinct account state, not a placeholder or error value."
            },
            "follow_info": {
              "type": "object",
              "properties": {
                "follow_status": {
                  "type": "number",
                  "description": "`0` (not following) observed on both fixtures."
                },
                "follow_status_str": {
                  "type": "string",
                  "description": "String copy of `follow_status`."
                }
              },
              "additionalProperties": true
            },
            "avatar_thumb": {
              "type": "object",
              "properties": {
                "url_list": {
                  "type": "array",
                  "items": {
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "description": "The owner's avatar image at multiple mirror URLs in the raw response -- withheld here (returned as `null` entries) regardless of what the account has set; only that an avatar exists is observable, not the image itself."
                }
              },
              "additionalProperties": true
            },
            "foreign_user": {
              "type": "number",
              "description": "`0` observed on both fixtures."
            }
          },
          "description": "The room owner's Douyin account.",
          "additionalProperties": true
        },
        "room_status": {
          "type": "number",
          "description": "Numeric room status code; `2` observed on both real fixtures."
        },
        "enter_room_id": {
          "type": "string",
          "description": "The resolved room id -- matches `data.data[0].id_str` on both fixtures."
        }
      },
      "additionalProperties": true
    },
    "status_code": {
      "type": "number",
      "description": "The call's own business-level status code. `0` on both real calls observed."
    }
  },
  "description": "The room record, as returned at routing.responseResultPath ($.output).",
  "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