Skip to content

Product-Related Video List

Introduction

Retrieve a list of videos related to specified products with the following features:

  • Search by product ID
  • Returns detailed video information, including video description, play count, and engagement data
  • Includes sales data associated with videos, such as sales volume and revenue

API Endpoint

bash
    POST /product/v1/video

Request Parameters

FieldTypeRequiredDescription
product_idstringYesProduct ID
date_typeintegerYesTime range, e.g., 25 for last 25 days, max 28 days

Request Example

bash
curl 'https://openapi.test.fastmoss.com/product/v1/video?client_id=XXX&timestamp=XXX&access_token=XXX&sign=XXX' \
--header 'Content-Type: application/json' \
{
    "filter": {
        "product_id": "1729421229342823356",
        "date_type": "7"
    },
    "page": 1,
    "pagesize": 10
}

Response Body

data.list

FieldTypeDescription
product_idstringProduct ID
video_idstringVideo ID
uidstringUser ID
is_adstringIs Advertisement
seller_idstringSeller ID
comment_countstringComment Count
digg_countstringLike Count
play_countstringPlay Count
share_countstringShare Count
create_datestringCreation Date
sold_countstringSales Volume
sale_amountstringSales Revenue
regionstringCountry/Region
videoobjectVideo Info Object

data.list.video

FieldTypeDescription
video_descstringVideo Description
coverstringCover Image URL
durationstringDuration (seconds)
fastmoss_urlstringFastmoss Link
tiktok_urlstringTikTok Link
uidstringUser ID

data.total

FieldTypeDescription
totalstringTotal Records

Response Example

json
{
  "code": 0,
  "data": {
    "list": [
      {
        "product_id": "1729421229342823356",
        "video_id": "7468186866076880170",
        "uid": "6790997286808093702",
        "is_ad": "0",
        "seller_id": "7495150597721263036",
        "comment_count": "0",
        "digg_count": "14",
        "play_count": "4592",
        "share_count": "0",
        "create_date": "2025-02-06",
        "sold_count": "28",
        "sale_amount": "700.0000",
        "video": {
          "video_desc": "@tarte cosmetics #tiktokshoploveatfirstfind #fypシ #tartecosmetics ",
          "cover": "https://s.500fd.com/tt_video/oIMPp5BmEi2ZEHYBiVzCkBKA0IlmpTGfwAhiOI",
          "duration": "12",
          "fastmoss_url": "https://www.fastmoss.com/zh/media-source/video/7468186866076880170",
          "tiktok_url": "https://www.tiktok.com/@brriiddgett/video/7468186866076880170",
          "uid": "6790997286808093702"
        },
        "region": "US"
      }
    ],
    "total": "3809"
  },
  "message": "success",
  "timestamp": 1743573480,
  "request_id": "efd631c4-92cf-5d27-4f41-de09f20dd714"
}