Skip to content
Eden Engine

Douyin User Profile Lookup (by sec_user_id)

omnial/douyin-app-handler-user-profile

Given a Douyin `sec_user_id`, returns that account's public profile: nickname, total favorites received, and account status (active, or deactivated/deleted with the platform's own explanation). An invalid or nonexistent id returns a status code with no user record, rather than an error.

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": [
    "sec_user_id"
  ],
  "properties": {
    "sec_user_id": {
      "type": "string",
      "examples": [
        "MS4wLjABAAAAW9FWcqS7RdQAWPd2AA5fL_ilmqsIFUCQ_Iym6Yh9_cUa6ZRqVLjVQSUjlHrfXY1Y"
      ],
      "description": "The Douyin user's opaque sec_user_id."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "user": {
      "type": [
        "object",
        "null"
      ],
      "properties": {
        "uid": {
          "type": "string",
          "description": "The account's public numeric id."
        },
        "nickname": {
          "type": "string",
          "description": "The account's public display name, in whatever script the owner set it."
        },
        "user_deleted": {
          "type": "boolean",
          "description": "True when the account has been deactivated/removed by its owner or the platform."
        },
        "total_favorited": {
          "type": "number",
          "description": "Total favorites the account has received."
        },
        "special_state_info": {
          "type": "object",
          "properties": {
            "title": {
              "type": "string",
              "description": "Short label, e.g. 'Account deactivated'."
            },
            "content": {
              "type": "string",
              "description": "Longer explanation of the special state, in the platform's own language."
            },
            "special_state": {
              "type": "number"
            }
          },
          "description": "Present when the account is in a special state (e.g. self-deactivated). Absent on a normal, active account -- unconfirmed on this tool's own fixtures, which only ever observed a deactivated account or no account at all.",
          "additionalProperties": true
        }
      },
      "description": "The account's public profile, or `null` when `sec_user_id` does not resolve.",
      "additionalProperties": true
    },
    "status_msg": {
      "type": [
        "string",
        "null"
      ],
      "description": "Observed as `null` on every fixture calibrated, populated or not."
    },
    "status_code": {
      "type": "number",
      "description": "0 when a user record was found, a nonzero code (e.g. 2) otherwise."
    }
  },
  "description": "The profile lookup result, as returned at routing.responseResultPath ($.output). `user` is `null` when `sec_user_id` does not resolve to any account -- confirmed against the `invalid-user-not-found` fixture, which still billed the normal per-call price.",
  "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 23, 2026