Skip to content
Eden Engine

Kuaishou Hot Posts & Stats (by User ID)

omnial/kuaishou-app-fetch-user-hot-post

Given a Kuaishou user_id, returns that user's hot posts: captions, publish time, duration, engagement counters (views/likes/collects/comments/shares/forwards), the author's own name and id, and the pagination cursor for the next page. Media URLs are withheld (stripped to null); pass the returned pcursor back in as input to page further.

activeper callv1
Provider
Web & Business Data Network
Category
kuaishou
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": [
    "user_id"
  ],
  "properties": {
    "pcursor": {
      "type": "string"
    },
    "user_id": {
      "type": "string",
      "examples": [
        "228905802"
      ]
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "feeds": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "time": {
            "type": "string",
            "description": "Publish time formatted by the platform, e.g. \"2024-12-13 17:17:22\"."
          },
          "type": {
            "type": "number",
            "description": "Post type; 1 (video) on every post observed."
          },
          "kwaiId": {
            "type": "string",
            "description": "The queried user's Kuaishou account id / handle."
          },
          "caption": {
            "type": "string",
            "description": "The post's caption/text."
          },
          "user_id": {
            "type": "number",
            "description": "The queried user's numeric id."
          },
          "duration": {
            "type": "number",
            "description": "Video length in milliseconds."
          },
          "headurls": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "url": {
                  "type": [
                    "string",
                    "null"
                  ]
                }
              },
              "additionalProperties": true
            },
            "description": "The author's avatar image URLs. Value withheld (stripped to null) in this tool's output -- only whether the avatar is set is observable, not the image itself."
          },
          "photo_id": {
            "type": "number",
            "description": "The post's numeric id. Values across both fixtures run past 2^53 (e.g. 5.22e18), so a caller should treat this as an opaque identifier, not an exact integer."
          },
          "user_sex": {
            "type": "string",
            "description": "The queried user's profile gender marker; \"M\" observed."
          },
          "verified": {
            "type": "boolean",
            "description": "false on every post observed."
          },
          "pureTitle": {
            "type": "string",
            "description": "A title variant of the same post, present on some posts and absent on others."
          },
          "timestamp": {
            "type": "number",
            "description": "Publish time, unix milliseconds."
          },
          "user_name": {
            "type": "string",
            "description": "The queried user's public display name."
          },
          "like_count": {
            "type": "number"
          },
          "view_count": {
            "type": "number"
          },
          "share_count": {
            "type": "number"
          },
          "main_mv_urls": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "url": {
                  "type": [
                    "string",
                    "null"
                  ]
                }
              },
              "additionalProperties": true
            },
            "description": "The post's video stream URLs. Value withheld (stripped to null) in this tool's output -- only HOW MANY playable sources the post has is observable, not the streams themselves."
          },
          "collect_count": {
            "type": "number"
          },
          "comment_count": {
            "type": "number"
          },
          "forward_count": {
            "type": "number"
          },
          "cover_thumbnail_urls": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "url": {
                  "type": [
                    "string",
                    "null"
                  ]
                }
              },
              "additionalProperties": true
            },
            "description": "The post's cover image URLs. Value withheld (stripped to null) in this tool's output -- only whether/at what count the post has cover images is observable."
          }
        },
        "additionalProperties": true
      },
      "description": "One entry per hot post, newest-first offset by the pcursor cycle."
    },
    "result": {
      "type": "number",
      "description": "Status code; 1 on both real calls observed."
    },
    "pcursor": {
      "type": "string",
      "description": "The cursor for the NEXT page of this feed. The first call (no pcursor input) returned `\"20\"`; a call passing `pcursor: \"20\"` back in returned `\"40\"`. An empty or absent pcursor means the end of the feed. The last page's value was not observed."
    }
  },
  "description": "The user's hot-post feed, as returned at routing.responseResultPath ($.output). Every post observed belongs to the queried user themselves (the same author id repeats across the whole feed), so the per-post `user_id`/`user_name`/`user_sex`/`kwaiId` fields are the queried account's own public profile fields, not a third party's.",
  "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 25, 2026