Shopee平台商品列表数据接口是一种用于获取Shopee平台上商品列表信息的API接口。通过调用该接口,用户可以获取到商品的基本信息,如商品ID、商品名称、商品价格等。以下是一个示例的Shopee平台商品列表数据接口的请求和返回示例:
Shopee.item_search-获取虾皮商品列表数据接口返回值说明
请求方式:HTTP POST GET ;复制Taobaoapi2014获取APISDK文件。
请求URL:api-gw.xxx.cn/shopee/item_search
请求参数:
请求参数:q=dress&page=1&sort=&country=.com.my
参数说明:q:搜索关键词-country:网站后缀(.com.my;.vn;.ph),
sort:排序[bid,_bid,sale,new]
(bid:总价,sale:销量,new:新品,加前缀为从大到小排序)
page:页数
请求示例:
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "api-gw.xxx.cn/shopee/item_search/?keys=<自己的keys>&secrets=<您自己的apisecrets>&q=dress&page=1&sort=&country=.com.my"
返回结果展示部分:
{
"items": {
"url": "https://shopee.com.my/search?keyword=dress",
"keyword": "dress",
"list_page": "1",
"real_total_results": "4269453",
"total_results": 5000,
"pagecount": 100,
"current_lang": "en",
"currency_code": "MYR",
"item": [
{
"title": "COLOUR",
"pic_url": "https://cf.shopee.com.my/file/79ec29aaa306ec1defd6bd555967702d",
"price": 38.9,
"promotion_price": 0,
"price_range": 0,
"num_iid": "277113808/4577557680",
"shop_id": "277113808",
"sales": 293,
"area": "Kelantan",
"detail_url": "https://shopee.com.my/product/277113808/4577557680"
},
{
"title": "Color ",
"pic_url": "https://cf.shopee.com.my/file/bcad44beb00c73a6e4521d6a9d9f5c27",
"price": 48,
"promotion_price": 109,
"price_range": 0,
"num_iid": "54302529/6310239196",
"shop_id": "54302529",
"sales": 439,
"area": "Selangor",
"detail_url": "https://shopee.com.my/product/54302529/6310239196"
},
{
以上示例中,我们通过调用Shopee平台商品列表数据接口,传入了店铺ID、分类ID、起始日期、结束日期和限制数量等参数,接口返回了指定店铺、分类、日期范围内的商品列表信息。返回结果中包含了商品的ID、名称和价格等基本信息。请注意,以上示例仅为说明目的,实际的接口URL和参数可能会有所不同。具体的接口URL、参数以及返回结果需要根据Shopee平台的具体接口文档来确定。