Skip to content
Eden Engine

Kuaishou Video Lookup (by URL)

omnial/kuaishou-app-fetch-one-video-by-url

Given a Kuaishou video share URL (e.g. https://v.kuaishou.com/cNYP0Z), returns that video's public metadata: caption, publisher (numeric account id, display name, declared sex, verification flag), duration, publish time, view/like/comment/collect/share/forward counts, cover-thumbnail and author-avatar availability, and the audio track used (name, artist, id, type, duration) when the video uses one. A share URL that resolves to no video returns an empty result rather than an error.

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": [
    "share_text"
  ],
  "properties": {
    "share_text": {
      "type": "string",
      "examples": [
        "https://v.kuaishou.com/cNYP0Z"
      ]
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "photos": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "time": {
            "type": "string",
            "description": "Publish time as a formatted date-time string, e.g. '2024-12-29 22:16:23'."
          },
          "caption": {
            "type": "string",
            "description": "The video's caption/description text."
          },
          "user_id": {
            "type": "number",
            "description": "The publisher's numeric Kuaishou account id."
          },
          "duration": {
            "type": "number",
            "description": "Video length in seconds."
          },
          "headurls": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "cdn": {
                  "type": "string"
                },
                "url": {
                  "type": "null",
                  "description": "Avatar image URL withheld, same as `cover_thumbnail_urls[].url`."
                }
              },
              "additionalProperties": true
            },
            "description": "The publisher's profile photo, mirrored across CDN hosts."
          },
          "photo_id": {
            "type": "number",
            "description": "The video's numeric id."
          },
          "user_sex": {
            "type": "string",
            "description": "The publisher's self-declared gender on their public account, e.g. 'M'/'F'/'U'."
          },
          "verified": {
            "type": "boolean",
            "description": "Whether the publisher's account is verified."
          },
          "timestamp": {
            "type": "number",
            "description": "Publish time, Unix milliseconds."
          },
          "user_name": {
            "type": "string",
            "description": "The publisher's own public display name."
          },
          "like_count": {
            "type": "number",
            "description": "Like count."
          },
          "soundTrack": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The track's id."
              },
              "name": {
                "type": "string",
                "description": "The track's title."
              },
              "type": {
                "type": "number",
                "description": "The track's internal type code."
              },
              "artist": {
                "type": "string",
                "description": "The track's artist/owner label."
              },
              "genreId": {
                "type": "number"
              },
              "duration": {
                "type": "number",
                "description": "Track length in seconds."
              },
              "loudness": {
                "type": "number",
                "description": "Normalized loudness in LUFS (negative value)."
              },
              "audioType": {
                "type": "number"
              },
              "isOffline": {
                "type": "boolean"
              },
              "finalStatus": {
                "type": "number"
              },
              "hasCopyright": {
                "type": "boolean"
              }
            },
            "description": "The audio track the video uses, when it uses one (a video's own original sound is a track too -- on the one real capture the track is the video's own 'original sound', sharing the publisher's name). Absent or near-empty on a video with no track is unconfirmed (not observed).",
            "additionalProperties": true
          },
          "view_count": {
            "type": "number",
            "description": "View count."
          },
          "share_count": {
            "type": "number",
            "description": "Share count."
          },
          "collect_count": {
            "type": "number",
            "description": "Collection/save count."
          },
          "comment_count": {
            "type": "number",
            "description": "Comment count."
          },
          "forward_count": {
            "type": "number",
            "description": "Forward count."
          },
          "cover_thumbnail_urls": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "cdn": {
                  "type": "string"
                },
                "url": {
                  "type": "null",
                  "description": "Image URL withheld -- only whether a cover image exists is observable."
                }
              },
              "additionalProperties": true
            },
            "description": "The video's cover thumbnail, mirrored across CDN hosts."
          }
        },
        "additionalProperties": true
      },
      "description": "The matched video's own record. One entry per video; a maximum of one was observed on the single real capture. Presence under a matching video is expected; it is absent on the not-found case."
    }
  },
  "description": "The video record, as returned at routing.responseResultPath ($.output). Observed as an empty object `{}` when the given share URL resolves to no existing video -- confirmed against the `video-not-found` fixture -- so no top-level field is guaranteed present.",
  "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