获取商品列表

请求 #

接口概述 #

查询商品列表

请求URL #

GET {{host}}/products/search

请求头(header) #

参数名 类型 是否必填 说明
Authorization string token

请求参数(url path) #

参数名 类型 是否必填 说明
title string 商品标题(模糊查询)
code string 自行编码(模糊查询)
cate_id int 平台类目ID
is_check int 平台是否审核(1平台审核通过,-2 审核不通过,-1待审核)
is_sale int SPU是否上架(1上架,-1下架)
uid string 平台商品UID
page int 页码
per_page int 每页数量(最大100)

请求示例 #

GET {{host}}/products/search?title=耐克&cate_id=1&page=1&per_page=10

响应 #

返回参数 #

参数名 类型 参数路径 说明
code int 错误码
msg string 错误详情
page int 页码
per_page int 每页数量
total_rows int 总数
data array 结果集
created_at string data 创建时间
uid string data 平台商品UID
product_source_dic int data 商品来源
code string data 自行编码
spu string data 商品SPU
title string data 商品标题
sub_title string data 商品副标题
cate_id int data 平台类目ID
cate_ids array data 平台类目ID集合
brand_id int data 平台品牌ID
brand string data 平台品牌名称
spec string data 商品规格
location string data 产地
tax_rate float data 税率
tax_code string data 税号
tax_abb string data 税收缩写
depot_id int data 仓库ID
unit_id int data 单位ID
unit_name string data 单位名称
is_check int data 是否审核通过(1通过,-1待审核,-2审核不通过)
ship_temp_id int data 运费模板ID
inventory_method int data 库存扣减方式
line_price float data 划线价格
main_img string data 主图
images StringArray data 商品图片
price_rule float data 平台加价系数
video_url string data 视频链接
refer_url string data 参考链接
pc_content string data PC端商品详情
mobile_content string data 移动端商品详情
failed_reason string data 审核失败原因
cate_names StringArray data 平台类目名称集合
sku_attrs array data 商品SKU规格集
attrs array data 商品属性集
skus array data 商品SKU集
created_at string skus 创建时间
updated_at string skus 更新时间
product_uid string skus 平台商品UID
sku_title string skus SKU标题
sku string skus SKU编码
sku_uid string skus SKU UID
sku_code string skus SKU自行编码
attributes array skus SKU规格集
attr_values StringArray skus SKU规格值集合
sale_price float skus 销售价格
min_order_num int skus 最小起订量
inventory int skus 库存
upc_code string skus UPC编码
is_sale bool skus 是否上架 true上架,false下架
images StringArray skus SKU图片
cate_id int skus 平台类目ID
sold_amount int skus 销售数量

响应示例 #

{
  "code": 10000,
  "msg": "操作成功",
  "data": [
    {
      "created_at": "2024-05-11 11:32:07",
      "uid": "27232468469817344",
      "product_source_dic": 2,
      "code": "021",
      "spu": "021",
      "title": "API测试商品",
      "sub_title": "--subtitile",
      "cate_id": 37,
      "cate_ids": [
        18,
        21,
        37
      ],
      "brand_id": 1,
      "brand": "五八哥/wubage",
      "spec": "",
      "location": "",
      "tax_rate": 0,
      "tax_code": "",
      "tax_abb": "",
      "depot_id": 0,
      "unit_id": 0,
      "unit_name": "个",
      "is_check": 1,
      "ship_temp_id": 3,
      "inventory_method": -1,
      "line_price": 100,
      "main_img": "http://localhost:9910/cadmin/api/storage/static/27232468469817344-1.png",
      "images": [
        "http://localhost:9910/cadmin/api/storage/static/27232468469817344-1.png",
        "http://localhost:9910/cadmin/api/storage/static/27232468469817344-2.png"
      ],
      "video_url": {},
      "price_rule": 1.2,
      "refer_url": "",
      "pc_content": "<p><img src=\"http://localhost:9910/cadmin/api/storage/static/1715398326843122000-1.png\" alt=\"\" width=\"800\" height=\"800\" /></p>",
      "mobile_content": "<p><img src=\"http://localhost:9910/cadmin/api/storage/static/1715398327099303000-1.png\" alt=\"\" width=\"800\" height=\"800\" /></p>",
      "failed_reason": "",
      "cate_names": [
        "笔记本",
        "计算机设备及软件",
        "电脑配件"
      ],
      "sku_attrs": null,
      "attrs": [
        {
          "label": "产地",
          "value": "北京",
          "sort": 1
        },
        {
          "label": "品牌",
          "value": "中车",
          "sort": 2
        }
      ],
      "skus": [
        {
          "created_at": "2024-05-11 11:32:07",
          "updated_at": "2024-05-11 11:32:07",
          "product_uid": "27232468469817344",
          "sku_title": "API测试商品 ",
          "sku": "",
          "sku_uid": "27232471368081408",
          "sku_code": "API-TEST-001-001",
          "attributes": null,
          "attr_values": null,
          "sale_price": 100,
          "min_order_num": 1,
          "inventory": 1000,
          "upc_code": "upc_code",
          "is_sale": 1,
          "images": [
            "http://localhost:9910/cadmin/api/storage/static/27232471368081408-1.png",
            "http://localhost:9910/cadmin/api/storage/static/27232471368081408-2.png"
          ],
          "cate_id": 37,
          "cate_ids": null,
          "sold_amount": 0
        }
      ]
    },
    {
      "created_at": "2024-05-11 11:30:23",
      "uid": "27232037140176896",
      "product_source_dic": 2,
      "code": "multi-003",
      "spu": "multi-003",
      "title": "多规格商品",
      "sub_title": "",
      "cate_id": 37,
      "cate_ids": [
        18,
        21,
        37
      ],
      "brand_id": 6,
      "brand": "格力/geli",
      "spec": "",
      "location": "",
      "tax_rate": 0,
      "tax_code": "",
      "tax_abb": "",
      "depot_id": 0,
      "unit_id": 0,
      "unit_name": "套",
      "is_check": -2,
      "ship_temp_id": 3,
      "inventory_method": -1,
      "line_price": 0,
      "main_img": "http://localhost:9910/cadmin/api/storage/static/27232037140176896-1.png",
      "images": [
        "http://localhost:9910/cadmin/api/storage/static/27232037140176896-1.png",
        "http://localhost:9910/cadmin/api/storage/static/27232037140176896-2.png"
      ],
      "video_url": {},
      "refer_url": "",
      "pc_content": "<p><img src=\"http://localhost:9910/cadmin/api/storage/static/1715398223813264000-1.png\" /><img src=\"http://localhost:9910/cadmin/api/storage/static/1715398223840278000-2.png\" /></p>",
      "mobile_content": "<p><img src=\"http://localhost:9910/cadmin/api/storage/static/1715398223872344000-1.png\" /><img src=\"http://localhost:9910/cadmin/api/storage/static/1715398223899131000-2.png\" /></p>",
      "failed_reason": "",
      "cate_names": [
        "笔记本",
        "计算机设备及软件",
        "电脑配件"
      ],
      "sku_attrs": [
        {
          "product_uid": "27232037140176896",
          "name": "颜色",
          "values": [
            "蓝色",
            "红色",
            "白色"
          ],
          "sort": 0
        },
        {
          "product_uid": "27232037140176896",
          "name": "尺码",
          "values": [
            "XL",
            "XXL"
          ],
          "sort": 1
        }
      ],
      "attrs": [
        {
          "label": "产地",
          "value": "江苏",
          "sort": 1
        },
        {
          "label": "重量",
          "value": "10KG",
          "sort": 2
        },
        {
          "label": "体积",
          "value": "1M3",
          "sort": 3
        }
      ],
      "skus": [
        {
          "created_at": "2024-05-11 11:30:23",
          "updated_at": "2024-05-11 11:30:23",
          "product_uid": "27232037140176896",
          "sku_title": "多规格商品 白色 XXL",
          "sku": "",
          "sku_uid": "27232038528491520",
          "sku_code": "123",
          "attributes": [
            {
              "name": "颜色",
              "value": "白色"
            },
            {
              "name": "尺码",
              "value": "XXL"
            }
          ],
          "attr_values": [
            "白色",
            "XXL"
          ],
          "sale_price": 12,
          "min_order_num": 1,
          "inventory": 999,
          "upc_code": "",
          "is_sale": 1,
          "images": null,
          "cate_id": 37,
          "cate_ids": null,
          "sold_amount": 0
        },
        {
          "created_at": "2024-05-11 11:30:23",
          "updated_at": "2024-05-11 11:30:23",
          "product_uid": "27232037140176896",
          "sku_title": "多规格商品 白色 XL",
          "sku": "",
          "sku_uid": "27232038524297220",
          "sku_code": "321",
          "attributes": [
            {
              "name": "颜色",
              "value": "白色"
            },
            {
              "name": "尺码",
              "value": "XL"
            }
          ],
          "attr_values": [
            "白色",
            "XL"
          ],
          "sale_price": 12,
          "min_order_num": 1,
          "inventory": 999,
          "upc_code": "",
          "is_sale": 1,
          "images": null,
          "cate_id": 37,
          "cate_ids": null,
          "sold_amount": 0
        },
        {
          "created_at": "2024-05-11 11:30:23",
          "updated_at": "2024-05-11 11:30:23",
          "product_uid": "27232037140176896",
          "sku_title": "多规格商品 红色 XXL",
          "sku": "",
          "sku_uid": "27232038524297219",
          "sku_code": "222",
          "attributes": [
            {
              "name": "颜色",
              "value": "红色"
            },
            {
              "name": "尺码",
              "value": "XXL"
            }
          ],
          "attr_values": [
            "红色",
            "XXL"
          ],
          "sale_price": 12,
          "min_order_num": 1,
          "inventory": 999,
          "upc_code": "",
          "is_sale": 1,
          "images": null,
          "cate_id": 37,
          "cate_ids": null,
          "sold_amount": 0
        },
        {
          "created_at": "2024-05-11 11:30:23",
          "updated_at": "2024-05-11 11:30:23",
          "product_uid": "27232037140176896",
          "sku_title": "多规格商品 红色 XL",
          "sku": "",
          "sku_uid": "27232038524297218",
          "sku_code": "111",
          "attributes": [
            {
              "name": "颜色",
              "value": "红色"
            },
            {
              "name": "尺码",
              "value": "XL"
            }
          ],
          "attr_values": [
            "红色",
            "XL"
          ],
          "sale_price": 12,
          "min_order_num": 1,
          "inventory": 999,
          "upc_code": "",
          "is_sale": 1,
          "images": null,
          "cate_id": 37,
          "cate_ids": null,
          "sold_amount": 0
        },
        {
          "created_at": "2024-05-11 11:30:23",
          "updated_at": "2024-05-11 11:30:23",
          "product_uid": "27232037140176896",
          "sku_title": "多规格商品 蓝色 XXL",
          "sku": "",
          "sku_uid": "27232038524297217",
          "sku_code": "225",
          "attributes": [
            {
              "name": "颜色",
              "value": "蓝色"
            },
            {
              "name": "尺码",
              "value": "XXL"
            }
          ],
          "attr_values": [
            "蓝色",
            "XXL"
          ],
          "sale_price": 12,
          "min_order_num": 1,
          "inventory": 999,
          "upc_code": "",
          "is_sale": 1,
          "images": null,
          "cate_id": 37,
          "cate_ids": null,
          "sold_amount": 0
        },
        {
          "created_at": "2024-05-11 11:30:23",
          "updated_at": "2024-05-11 11:30:23",
          "product_uid": "27232037140176896",
          "sku_title": "多规格商品 蓝色 XL",
          "sku": "",
          "sku_uid": "27232038524297216",
          "sku_code": "1",
          "attributes": [
            {
              "name": "颜色",
              "value": "蓝色"
            },
            {
              "name": "尺码",
              "value": "XL"
            }
          ],
          "attr_values": [
            "蓝色",
            "XL"
          ],
          "sale_price": 12,
          "min_order_num": 1,
          "inventory": 999,
          "upc_code": "",
          "is_sale": 1,
          "images": null,
          "cate_id": 37,
          "cate_ids": null,
          "sold_amount": 0
        }
      ]
    }
  ],
  "page": 1,
  "per_page": 2,
  "total_rows": 4712
}