Skip to content
Eden Engine

WeChat Channels Live Stream Detail (by Live ID)

omnial/wechat-channels-fetch-live-detail

Given a WeChat Channels live_id, returns that live stream's status, timing, and engagement metrics (current/peak viewer count, likes, forwards, new fans gained, replay availability), plus the streaming anchor's public profile (display name, finder handle, bio, verification status, follower count). When the given live_id does not resolve to a real stream, returns a short message explaining why instead of any live data.

activeper callv1
Provider
Web & Business Data Network
Category
wechat
Provider price
$0.020475 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": [
    "live_id"
  ],
  "properties": {
    "raw": {
      "type": "boolean",
      "default": true,
      "description": "True=原始响应;False=精简解析结构/True=raw response; False=simplified parsed structure"
    },
    "scene": {
      "type": "integer",
      "default": 5,
      "maximum": 1000,
      "minimum": 0,
      "description": "进入场景,默认 5/Entry scene, default 5"
    },
    "live_id": {
      "type": "string",
      "example": "2078950291205875194",
      "pattern": "^[0-9]+$",
      "maxLength": 32,
      "description": "直播 ID(纯数字)/Live ID (numeric)"
    },
    "finder_username": {
      "anyOf": [
        {
          "type": "string",
          "pattern": "^(v2_[0-9a-fA-F]+@finder)?$",
          "maxLength": 256
        },
        {
          "type": "null"
        }
      ],
      "default": "",
      "example": "v2_060000231003b20faec8cae1811ac4d5c702ea32b0771737aa785454f7f8177114cc4d248d66@finder",
      "description": "主播 finder username(可选,提高命中)/Anchor finder username (optional, improves hit rate)"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "message": {
      "type": "string",
      "description": "Present only on the not-found shape: a short explanation (observed in Chinese) that the live_id/finder_username/object_id given did not match a real stream, and that the call is still billed."
    },
    "liveInfo": {
      "type": "object",
      "properties": {
        "liveId": {
          "type": "number",
          "description": "The stream's numeric id. Large WeChat live ids can exceed JavaScript's safe integer range -- the one real value observed (2078950291205875194 as a string input) came back as 2078950291205875200, a precision-rounded number, not an exact round-trip of the id you queried with."
        },
        "endTime": {
          "type": "number",
          "description": "Unix seconds."
        },
        "likeCnt": {
          "type": "number"
        },
        "totalGmv": {
          "type": "number",
          "description": "Gross merchandise value from the live, in the vendor's own unit; 0 observed for a non-commerce stream."
        },
        "onlineCnt": {
          "type": "number",
          "description": "Current viewer count; 0 for an ended stream."
        },
        "startTime": {
          "type": "number",
          "description": "Unix seconds."
        },
        "forwardCnt": {
          "type": "number"
        },
        "liveStatus": {
          "type": "number",
          "description": "Numeric status code, e.g. 2 observed for a stream that has ended."
        },
        "newLikeCnt": {
          "type": "number"
        },
        "sourceType": {
          "type": "number"
        },
        "statusDesc": {
          "type": "string",
          "description": "Observed as an empty string when ended."
        },
        "replayStatus": {
          "type": "number",
          "description": "Numeric replay-availability code."
        },
        "maxOnlineCount": {
          "type": "number",
          "description": "Peak concurrent viewer count."
        },
        "liveElapsedTime": {
          "type": "number",
          "description": "Seconds, observed for an ended stream."
        },
        "liveBusinessType": {
          "type": "number"
        },
        "participantCount": {
          "type": "number"
        }
      },
      "description": "The live stream's own status, timing, and engagement metrics.",
      "additionalProperties": true
    },
    "liveCover": {
      "type": "object",
      "properties": {
        "imgUrl": {
          "type": [
            "string",
            "null"
          ],
          "description": "Live cover image. Value withheld (returned as `null` regardless of what the stream published) -- only whether the field is populated is observable, not the image itself."
        }
      },
      "additionalProperties": true
    },
    "baseResponse": {
      "type": "object",
      "properties": {
        "ret": {
          "type": "number",
          "description": "0 observed on the one real populated call."
        },
        "errMsg": {
          "type": [
            "string",
            "null"
          ],
          "description": "Observed null on the one real populated call."
        }
      },
      "description": "The upstream call's own status envelope.",
      "additionalProperties": true
    },
    "anchorContact": {
      "type": "object",
      "properties": {
        "headUrl": {
          "type": [
            "string",
            "null"
          ],
          "description": "The anchor's avatar image. Withheld, same as `liveCover.imgUrl`."
        },
        "authInfo": {
          "type": "object",
          "properties": {
            "authIconUrl": {
              "type": [
                "string",
                "null"
              ],
              "description": "The verification badge icon. Withheld, same as `liveCover.imgUrl`."
            },
            "verifyStatus": {
              "type": "number",
              "description": "Numeric verification-status code."
            },
            "authProfession": {
              "type": "string",
              "description": "The verified business name the account has published as its own auth credential, when verified. Empty string when unverified/not set."
            }
          },
          "additionalProperties": true
        },
        "nickname": {
          "type": "string",
          "description": "The anchor's public display name."
        },
        "username": {
          "type": "string",
          "description": "The anchor's own public 'finder' handle -- the same value this tool's own `finder_username` input field accepts."
        },
        "fansCount": {
          "type": "number"
        },
        "signature": {
          "type": "string",
          "description": "The anchor's public bio text."
        },
        "liveStatus": {
          "type": "number"
        }
      },
      "description": "The streaming anchor's own public profile.",
      "additionalProperties": true
    },
    "liveNewFansNum": {
      "type": "number",
      "description": "New followers gained during this live."
    },
    "bizLiveNewFansNum": {
      "type": "number"
    },
    "replaySubscribedCount": {
      "type": "number"
    }
  },
  "description": "The live-detail record, as returned at routing.responseResultPath ($.output). Observed as just a short `message` field (no `liveInfo`/`anchorContact`) when the given `live_id` does not resolve to any real stream -- confirmed against the `nonexistent-live-id` fixture, which was still billed at the normal per-call price (the upstream vendor bills invalid-parameter requests the same as valid ones).",
  "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.020475
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