# 获取带货达人商品列表

# 接口说明

通过该接口可获取带货达人商品列表。

# 接口调用请求说明

POST https://api.weixin.qq.com/channels/ec/compass/shop/finder/product/list/get?access_token=ACCESS_TOKEN

# 请求参数说明

参数 类型 是否必填 描述
ds string 日期,格式YYYYMMDD
finder_id string 视频号ID

# 请求参数示例

{
    "ds": "20240520",
    "finder_id": "sphIEqMmbCyGrjd"
}

# 返回参数说明

参数 类型 描述
errcode number 错误码
errmsg string 错误信息
product_list[].product_id string 商品id
product_list[].head_img_url string[] 商品头图
product_list[].title string 商品标题
product_list[].price string 商品价格
product_list[].first_category_id string 商品1级类目
product_list[].second_category_id string 商品2级类目
product_list[].third_category_id string 商品3级类目
product_list[].data.commission_ratio float 佣金率
product_list[].data.pay_gmv number 成交金额

# 返回参数示例

{
  "errcode": 0,
  "errmsg": "ok",
  "product_list": [
    {
      "product_id": "10000105888088",
      "head_img_url": "https://store.mp.video.tencent-cloud.com/161/20304/snscosdownload/SZ/reserved/6618aeb0000bbf460ac33a13e568bc1e000000a000004f50?imageView2/1/w/800/h/800/q/50",
      "title": "尺码-女装呢",
      "price": "20000",
      "first_category_id": "6033",
      "second_category_id": "6057",
      "third_category_id": "6058",
      "data": {
        "commission_ratio": 1.0,
        "pay_gmv": "1"
      }
    }
  ]
}

# 错误码

错误码 错误描述
公共错误码 -
10021069 请求参数日期格式有误
10023001 finder_id有误