Skip to content
Eden Engine

Kuaishou User Profile & Stats (by User ID)

omnial/kuaishou-app-fetch-one-user

Given a Kuaishou account's user ID, returns the account's public profile: display name, Kwai ID, numeric user ID, sex, bio, city and region, constellation, verified status, and follower, following, photo, private-photo, and like counts, plus profile badge labels. A nonexistent user ID returns an empty object rather than an error.

activeper callv1
Provider
Web & Business Data Network
Category
kuaishou
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": [
    "user_id"
  ],
  "properties": {
    "user_id": {
      "type": "string",
      "examples": [
        "3xz63mn6fngqtiq"
      ]
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "authorInfo": {
      "type": "object",
      "properties": {
        "isVerifiedUser": {
          "type": "boolean",
          "description": "True when the account holds Kuaishou's verified-user status (the 'V' check). Observed as `false` on the one real account calibrated -- the account instead carried a real-name ('已实名') badge in `userProfile.label.labels`."
        },
        "isAdBusinessUser": {
          "type": "boolean",
          "description": "True when the account is an advertising/business account."
        }
      },
      "description": "Top-level account flags returned alongside the profile.",
      "additionalProperties": true
    },
    "userProfile": {
      "type": "object",
      "properties": {
        "label": {
          "type": "object",
          "properties": {
            "labels": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string",
                    "description": "The badge's visible label text (e.g. '已实名' = real-name verified)."
                  }
                },
                "additionalProperties": true
              }
            }
          },
          "description": "Profile badge labels Kuaishou renders under the account name (constellation, location, real-name verification, etc.), reduced to their visible text only -- badge icon URLs and deep-link actions are not returned.",
          "additionalProperties": true
        },
        "profile": {
          "type": "object",
          "properties": {
            "kwaiId": {
              "type": "string",
              "description": "The account's public Kwai ID, a short user handle (e.g. 'quanshaogmod')."
            },
            "headurl": {
              "type": [
                "string",
                "null"
              ],
              "description": "The account's avatar image URL. Value withheld (stripped to `null`) in this tool's output -- only whether the account has an avatar is observable, not the image itself."
            },
            "user_id": {
              "type": "number",
              "description": "The account's numeric user id (e.g. 228905802) -- the raw id behind the `user_id` string the upstream resolves."
            },
            "headurls": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "url": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "Avatar URL. Value withheld (stripped to `null`) in this tool's output."
                  }
                },
                "additionalProperties": true
              },
              "description": "Alternate delivery copies of the avatar."
            },
            "user_sex": {
              "type": "string",
              "description": "Observed as 'M' on the one real account calibrated; 'F' is the platform's corresponding other value. A third-party caller cannot infer gender beyond what the account itself discloses."
            },
            "verified": {
              "type": "boolean",
              "description": "This profile block's own verified flag (observed `false`)."
            },
            "user_name": {
              "type": "string",
              "description": "The account's public display name (observed in Chinese)."
            },
            "user_text": {
              "type": "string",
              "description": "The account's bio / self-description text."
            },
            "bigHeadUrls": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "url": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "Large avatar URL. Value withheld (stripped to `null`) in this tool's output."
                  }
                },
                "additionalProperties": true
              },
              "description": "Large/banner-size avatar copies."
            },
            "user_profile_bg_url": {
              "type": [
                "string",
                "null"
              ],
              "description": "The profile's background image URL. Value withheld (stripped to `null`) in this tool's output. `userProfile.profile.multiBackground` (an empty object on the one real account calibrated) carries the same data in extended form and is not returned."
            },
            "user_profile_bg_urls": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "url": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "Background image URL. Value withheld (stripped to `null`) in this tool's output."
                  }
                },
                "additionalProperties": true
              },
              "description": "Alternate delivery copies of the profile background."
            }
          },
          "description": "The account's core identity.",
          "additionalProperties": true
        },
        "cityCode": {
          "type": "string",
          "description": "The account's home city as a numeric-ish code string (e.g. '210200')."
        },
        "cityName": {
          "type": "string",
          "description": "The account's self-declared home location as displayed on the profile (e.g. '辽宁 大连市' -- province + city, in Chinese)."
        },
        "ipLocation": {
          "type": "object",
          "properties": {
            "ipLocationName": {
              "type": "string",
              "description": "Province-level IP location name (e.g. '辽宁'), the same coarse public label Kuaishou displays to every visitor of the profile."
            }
          },
          "description": "Coarse IP-derived location shown publicly on the profile. Only the province-level name is returned; nothing below that level (codes, icons, UI strings) is.",
          "additionalProperties": true
        },
        "ownerCount": {
          "type": "object",
          "properties": {
            "fan": {
              "type": "number",
              "description": "Follower count."
            },
            "like": {
              "type": "number",
              "description": "Likes given."
            },
            "photo": {
              "type": "number",
              "description": "Total photo/video posts."
            },
            "follow": {
              "type": "number",
              "description": "Follows (accounts this user follows)."
            },
            "moment": {
              "type": "number",
              "description": "Moments/short-status count."
            },
            "collect": {
              "type": "number",
              "description": "Collections/favorites count."
            },
            "creation": {
              "type": "number",
              "description": "Creations/studio count."
            },
            "magicFace": {
              "type": "number",
              "description": "Magic-face / AR-effect accommodation count."
            },
            "recommend": {
              "type": "number",
              "description": "Recommended-content count."
            },
            "novelDrama": {
              "type": "number",
              "description": "Serialized novel-drama episode count."
            },
            "livePlayBack": {
              "type": "number",
              "description": "Live replay videos count."
            },
            "photo_public": {
              "type": "number",
              "description": "Public posts count."
            },
            "photo_private": {
              "type": "number",
              "description": "Private posts count."
            },
            "total_photo_like": {
              "type": "number",
              "description": "Lifetime likes received across all posts."
            }
          },
          "description": "The account's public content and engagement counters. Any counter can be 0 -- the one real account calibrated had several (e.g. `collect: 0`, `creation: 0`).",
          "additionalProperties": true
        },
        "constellation": {
          "type": "string",
          "description": "The account's self-declared star sign (observed as '双鱼座' on the one real account calibrated), a value the account itself publishes on its profile."
        },
        "digitalIdentityInfo": {
          "type": "object",
          "properties": {
            "isDigitalIdentity": {
              "type": "boolean",
              "description": "True when the account carries the platform's digital-identity (AI/virtual account) designation. Observed `false` on the one real account calibrated."
            }
          },
          "description": "Digital-identity flag (e.g. whether the account is an AI/virtual account).",
          "additionalProperties": true
        }
      },
      "description": "The account's public profile block.",
      "additionalProperties": true
    }
  },
  "description": "The Kuaishou user's public profile, as returned at routing.responseResultPath ($.output). Observed as `{}` when the given `user_id` does not resolve to an existing account -- confirmed against the `user-not-found` fixture, which returns an empty object rather than an error. Fields present are the account's own public profile data; image URL fields are deliberately withheld (stripped to `null`, see their descriptions).",
  "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 25, 2026