虾皮Shopee商品详情接口(item_get-根据ID取商品详情)代码封装

 item_get-根据ID取商品详情接口
通过代码封装该接口可以拿到商品标题,商品价格,商品促销信息,商品优惠价,商品库存,sku属性,商品图片,desc图片,desc描述,sku图片,sku描述,商品规格,商品销量,商品重量,商品尺寸,商品列表,店铺所有商品,商品详情属性描述等页面上有的参数均可以拿到。

请求方式:HTTPS GET POST 

Shopee.item_get

公共参数

名称类型必须描述
keyString调用key(必须以GET方式拼接在URL中)
  • 注册Key和secret接入
secretString调用密钥
api_nameStringAPI接口名称(包括在请求地址中)[item_search,item_get,item_search_shop等]
cacheString[yes,no]默认yes,将调用缓存的数据,速度比较快
result_typeString[json,jsonu,xml,serialize,var_export]返回数据格式,默认为json,jsonu输出的内容中文可以直接阅读
langString[cn,en,ru]翻译语言,默认cn简体中文
versionStringAPI版本

请求参数

请求参数:num_iid=264070136/5637247041&country=.com.my参数说明:num_iid:商品ID-country:网站后缀(.com.my;.vn;.ph)

请求示例

# coding:utf-8
"""
Compatible for python2.x and python3.x
requirement: pip install requests
"""
from __future__ import print_function
import requests
# 请求示例 url 默认请求参数已经做URL编码
url = "https://api-gw.onebound.cn/shopee/item_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=264070136/5637247041&country=.com.my"
headers = {"Accept-Encoding": "gzip","Connection": "close"
}
if __name__ == "__main__":r = requests.get(url, headers=headers)json_obj = r.json()print(json_obj)

 响应示例

{"item": {"num_iid": 5637247041,"title": "Fashionable plus size women's dress 2020 new spring and summer dress was thin and thin and fat sister dress two-piece suit","detail_url": "https://shopee.com.my/product/264070136/5637247041","pic_url": "https://cf.shopee.com.my/file/f8bc1116ea922e5ed87a492390b1cc1a","price": 0.0003168,"orginal_price": 0.0003168,"cid": 100017,"desc": "Brand: Other/Other\nStyle: Sweet and Fresh/College\nPopular elements: buttons, gauze, stitching\nStyle: skirt suit\nsleeve length: short sleeve\nFabric/Material: Other/Polyester (Polyester Fiber)\nIngredient content: 71% (inclusive)-80% (inclusive)\nWhether to add cashmere: no cashmere\nTime to market: Spring 2020\nDelivery time:\nShipped on the same day before subscripting at 18:00 every day,\nIt is estimated that it will take 4-10 days for normal goods to arrive at your hands\n\nMasa penghantaran\nDihantar pada hari yang sama sebelum pukul 18:00 setiap hari\nDihantar keesokan harinya selepas jam 18:00.\nDianggarkan memerlukan masa 4-10 hari untuk barang biasa sampai tangan anda\n\nPakaian wanita bersaiz plus bergaya.Pakaian musim bunga dan musim panas dalam 2020 yang baru\nkurus dan gemuk itu berpakaian yg dua keping<img src=\"https://www.o0b.cn/i.php?t.png&rid=gw-4.64603b92ec1a9&p=3060574495&k=i_key&t=1684028307\" style=\"display:none\" />","item_imgs": [{"url": "https://cf.shopee.com.my/file/f8bc1116ea922e5ed87a492390b1cc1a"},{"url": "https://cf.shopee.com.my/file/c0d49dfae84b81468269a17714742adb"},{"url": "https://cf.shopee.com.my/file/f4dd56edbe0ccc13ca2cba0d6ba5167a"},{"url": "https://cf.shopee.com.my/file/35f35de0d5826c4969a42483b34d8bea"},{"url": "https://cf.shopee.com.my/file/14b7804a2a87c70fa763c518ce6ec583"},{"url": "https://cf.shopee.com.my/file/e1bc3fe36abc09c00ead17243b9825f0"},{"url": "https://cf.shopee.com.my/file/ab490d68394575366c36cee16ad0f86e"},{"url": "https://cf.shopee.com.my/file/a6148259a00b460f5e30ba04a327f9a3"},{"url": "https://cf.shopee.com.my/file/e1bc5d2bb3c010af4f688e6f22a63eca"}],"props": [{"name": "Plus Size","value": "Yes"},{"name": "Dress/Skirt Length","value": "Midi"}],"props_list": {"81944:81998": "颜色分类:T-shirt+skirt","81944:82419": "颜色分类:T-shirt","81944:82487": "颜色分类:skirt","82547:82553": "尺码:M 建议【42.5-50KG】","82547:82587": "尺码:L 建议 【50-57.5kg】","82547:82637": "尺码:XL 【建议57.5-65kg】","82547:82668": "尺码:2XL 【建议65-72.5kg】","82547:82714": "尺码:3XL 【建议72.5-82.5kg】","82547:82762": "尺码:4XL【建议82.5-90kg】"},"prop_imgs": {"prop_img": [{"properties": "81944:81998","url": "https://cf.shopee.com.my/file/81bea46afa4113012b7330cc3c846428"},{"properties": "81944:82419","url": "https://cf.shopee.com.my/file/c0d49dfae84b81468269a17714742adb"},{"properties": "81944:82487","url": "https://cf.shopee.com.my/file/f4dd56edbe0ccc13ca2cba0d6ba5167a"}]},"props_imgs": {"prop_img": [{"properties": "81944:81998","url": "https://cf.shopee.com.my/file/81bea46afa4113012b7330cc3c846428"},{"properties": "81944:82419","url": "https://cf.shopee.com.my/file/c0d49dfae84b81468269a17714742adb"},{"properties": "81944:82487","url": "https://cf.shopee.com.my/file/f4dd56edbe0ccc13ca2cba0d6ba5167a"}]},"props_name": "81944:81998:颜色分类:T-shirt+skirt;81944:81998:颜色分类:T-shirt+skirt;81944:81998:颜色分类:T-shirt+skirt;81944:81998:颜色分类:T-shirt+skirt;81944:81998:颜色分类:T-shirt+skirt;81944:81998:颜色分类:T-shirt+skirt;81944:82419:颜色分类:T-shirt;81944:82419:颜色分类:T-shirt;81944:82419:颜色分类:T-shirt;81944:82419:颜色分类:T-shirt;81944:82419:颜色分类:T-shirt;81944:82419:颜色分类:T-shirt;81944:82487:颜色分类:skirt;81944:82487:颜色分类:skirt;81944:82487:颜色分类:skirt;81944:82487:颜色分类:skirt;81944:82487:颜色分类:skirt;81944:82487:颜色分类:skirt;82547:82553:尺码:M 建议【42.5-50KG】;82547:82587:尺码:L 建议 【50-57.5kg】;82547:82637:尺码:XL 【建议57.5-65kg】;82547:82668:尺码:2XL 【建议65-72.5kg】;82547:82714:尺码:3XL 【建议72.5-82.5kg】;82547:82762:尺码:4XL【建议82.5-90kg】;82547:82553:尺码:M 建议【42.5-50KG】;82547:82587:尺码:L 建议 【50-57.5kg】;82547:82637:尺码:XL 【建议57.5-65kg】;82547:82668:尺码:2XL 【建议65-72.5kg】;82547:82714:尺码:3XL 【建议72.5-82.5kg】;82547:82762:尺码:4XL【建议82.5-90kg】;82547:82553:尺码:M 建议【42.5-50KG】;82547:82587:尺码:L 建议 【50-57.5kg】;82547:82637:尺码:XL 【建议57.5-65kg】;82547:82668:尺码:2XL 【建议65-72.5kg】;82547:82714:尺码:3XL 【建议72.5-82.5kg】;82547:82762:尺码:4XL【建议82.5-90kg】","desc_img": [],"location": null,"post_fee": "","skus": {"sku": [{"price": 0.0006336,"total_price": 0,"orginal_price": 0.0006336,"properties": "81944:81998;82547:82553","properties_name": "81944:81998:颜色分类:T-shirt+skirt;82547:82553:尺码:M 建议【42.5-50KG】","quantity": 982,"sku_id": null},{"price": 0.0006336,"total_price": 0,"orginal_price": 0.0006336,"properties": "81944:81998;82547:82587","properties_name": "81944:81998:颜色分类:T-shirt+skirt;82547:82587:尺码:L 建议 【50-57.5kg】","quantity": 983,"sku_id": null},{"price": 0.0006336,"total_price": 0,"orginal_price": 0.0006336,"properties": "81944:81998;82547:82637","properties_name": "81944:81998:颜色分类:T-shirt+skirt;82547:82637:尺码:XL 【建议57.5-65kg】","quantity": 992,"sku_id": null},{"price": 0.0006336,"total_price": 0,"orginal_price": 0.0006336,"properties": "81944:81998;82547:82668","properties_name": "81944:81998:颜色分类:T-shirt+skirt;82547:82668:尺码:2XL 【建议65-72.5kg】","quantity": 989,"sku_id": null},{"price": 0.0006336,"total_price": 0,"orginal_price": 0.0006336,"properties": "81944:81998;82547:82714","properties_name": "81944:81998:颜色分类:T-shirt+skirt;82547:82714:尺码:3XL 【建议72.5-82.5kg】","quantity": 992,"sku_id": null},{"price": 0.0006336,"total_price": 0,"orginal_price": 0.0006336,"properties": "81944:81998;82547:82762","properties_name": "81944:81998:颜色分类:T-shirt+skirt;82547:82762:尺码:4XL【建议82.5-90kg】","quantity": 985,"sku_id": null},{"price": 0.0003808,"total_price": 0,"orginal_price": 0.0003808,"properties": "81944:82419;82547:82553","properties_name": "81944:82419:颜色分类:T-shirt;82547:82553:尺码:M 建议【42.5-50KG】","quantity": 998,"sku_id": null},{"price": 0.0003808,"total_price": 0,"orginal_price": 0.0003808,"properties": "81944:82419;82547:82587","properties_name": "81944:82419:颜色分类:T-shirt;82547:82587:尺码:L 建议 【50-57.5kg】","quantity": 999,"sku_id": null},{"price": 0.0003808,"total_price": 0,"orginal_price": 0.0003808,"properties": "81944:82419;82547:82637","properties_name": "81944:82419:颜色分类:T-shirt;82547:82637:尺码:XL 【建议57.5-65kg】","quantity": 1000,"sku_id": null},{"price": 0.0003808,"total_price": 0,"orginal_price": 0.0003808,"properties": "81944:82419;82547:82668","properties_name": "81944:82419:颜色分类:T-shirt;82547:82668:尺码:2XL 【建议65-72.5kg】","quantity": 999,"sku_id": null},{"price": 0.0003808,"total_price": 0,"orginal_price": 0.0003808,"properties": "81944:82419;82547:82714","properties_name": "81944:82419:颜色分类:T-shirt;82547:82714:尺码:3XL 【建议72.5-82.5kg】","quantity": 999,"sku_id": null},{"price": 0.0003808,"total_price": 0,"orginal_price": 0.0003808,"properties": "81944:82419;82547:82762","properties_name": "81944:82419:颜色分类:T-shirt;82547:82762:尺码:4XL【建议82.5-90kg】","quantity": 998,"sku_id": null},{"price": 0.0003168,"total_price": 0,"orginal_price": 0.0003168,"properties": "81944:82487;82547:82553","properties_name": "81944:82487:颜色分类:skirt;82547:82553:尺码:M 建议【42.5-50KG】","quantity": 1000,"sku_id": null},{"price": 0.0003168,"total_price": 0,"orginal_price": 0.0003168,"properties": "81944:82487;82547:82587","properties_name": "81944:82487:颜色分类:skirt;82547:82587:尺码:L 建议 【50-57.5kg】","quantity": 1000,"sku_id": null},{"price": 0.0003168,"total_price": 0,"orginal_price": 0.0003168,"properties": "81944:82487;82547:82637","properties_name": "81944:82487:颜色分类:skirt;82547:82637:尺码:XL 【建议57.5-65kg】","quantity": 997,"sku_id": null},{"price": 0.0003168,"total_price": 0,"orginal_price": 0.0003168,"properties": "81944:82487;82547:82668","properties_name": "81944:82487:颜色分类:skirt;82547:82668:尺码:2XL 【建议65-72.5kg】","quantity": 998,"sku_id": null},{"price": 0.0003168,"total_price": 0,"orginal_price": 0.0003168,"properties": "81944:82487;82547:82714","properties_name": "81944:82487:颜色分类:skirt;82547:82714:尺码:3XL 【建议72.5-82.5kg】","quantity": 999,"sku_id": null},{"price": 0.0003168,"total_price": 0,"orginal_price": 0.0003168,"properties": "81944:82487;82547:82762","properties_name": "81944:82487:颜色分类:skirt;82547:82762:尺码:4XL【建议82.5-90kg】","quantity": 997,"sku_id": null}]},"num": 17907,"seller_id": null,"shop_id": "","nick": null,"sales": 0,"total_sold": "-1","seller_info": {"nick": null,"item_score": null,"score_p": null,"delivery_score": null,"shop_type": "","user_num_id": null,"sid": "","title": "","zhuy": "https://my.xiapibuy.com/qzq1274334183.my","cert": null,"open_time": "","credit_score": null,"shop_name": "Big size women's fashion "},"data_from": "Ha","props_img": {"81944:81998": "https://cf.shopee.com.my/file/81bea46afa4113012b7330cc3c846428","81944:82419": "https://cf.shopee.com.my/file/c0d49dfae84b81468269a17714742adb","81944:82487": "https://cf.shopee.com.my/file/f4dd56edbe0ccc13ca2cba0d6ba5167a"},"format_check": "ok","shop_item": [],"relate_items": []},"error": "","secache": "da67365cb819d7c288d8451ffd8c3692","secache_time": 1684028307,"secache_date": "2023-05-14 09:38:27","translate_status": "","translate_time": 0,"language": {"default_lang": "cn","current_lang": "cn"},"reason": "","error_code": "0000","cache": 0,"api_info": "today:30 max:10100 all[54=30+5+19];expires:2030-12-31","execution_time": "0.33","server_time": "Beijing/2023-05-14 09:38:27","client_ip": "182.108.169.31","call_args": {"num_iid": "264070136/5637247041","is_promotion": ".com.my"},"api_type": "shopee","translate_language": "zh-CN","translate_engine": "baidu","server_memory": "0.8MB","request_id": "gw-4.64603b92ec1a9","last_id": "1737613952"
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/45874.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

taobao.item.update.listing( 一口价商品上架 )

&#xffe5;开放平台基础API必须用户授权 单个商品上架输入的num_iid必须属于当前会话用户 公共参数 请求地址: HTTP地址 http://gw.api.taobao.com/router/rest 公共请求参数: 请求参数 响应参数 点击获取key和secret 请求示例 TaobaoClient client new DefaultTaobaoCl…

【教程】获取实时反诈最新动态/案例

转载请注明出处&#xff1a;小锋学长生活大爆炸[xfxuezhang.blog.csdn.net] 请勿用于非法用途&#xff01; 目录 宣传页链接 第一页帖子链接 其他页面链接 示例使用代码 想搜集会动态更新的诈骗案例&#xff0c;用于做反诈宣传脚本&#xff0c;但网上都是诈骗静态帖子&…

chatgpt赋能python:Python自动绘制轨迹:实现快速轨迹可视化的最佳工具

Python自动绘制轨迹&#xff1a;实现快速轨迹可视化的最佳工具 随着科技的不断发展&#xff0c;数据变得越来越庞大。数据处理、分析的时效性成为了一个非常重要的话题&#xff0c;而自动化技术也因此应运而生。Python作为一种高效且功能丰富的编程语言&#xff0c;可以实现许…

大神李沐、快手元老李岩被曝离职后转投大模型,ChatGPT掀起AI创业狂飙

点击上方“AI遇见机器学习”&#xff0c;选择“星标”公众号 重磅干货&#xff0c;第一时间送 来自&#xff1a;新智元 编辑&#xff1a;编辑部 【导读】在B站讲论文的李沐大神被曝出从亚马逊离职&#xff0c;与导师一同投身大模型创业。无独有偶&#xff0c;快手前AI核心人物李…

我和 chatGPT 对线操作系统!

大家都知道现在 chatGPT 已经在多个领域展现了及其强大的工地&#xff0c;比如文案策划&#xff0c;毕业论文方便&#xff0c;甚至很多程序员都直接让 chatGPT 帮忙写代码了&#xff0c;在一些模板化的代码方面&#xff0c;chatGPT 更展示了优秀的能力。 所以我突然迸发了一个…

AI绘图实战(九):给热门歌曲做配图 | Stable Diffusion成为设计师生产力工具

S&#xff1a;AI能取代设计师么&#xff1f; I &#xff1a;至少在设计行业&#xff0c;目前AI扮演的主要角色还是超级工具&#xff0c;要顶替&#xff1f;除非甲方对设计效果无所畏惧~~ 预先学习&#xff1a; 安装及其问题解决参考&#xff1a;《Windows安装Stable Diffusion …

QT 借助 图表 实现音频频谱的绘制

1.前言 因为项目需要&#xff0c;要将音频播放并且实时展现其频谱图。项目中需要解析频谱数据&#xff0c;涉及到相关算法问题。所以博主没有采用网络上QT用QPainter库绘制频谱&#xff0c;而是采用了QChart来绘制频谱。 2.效果展示 如图&#xff0c;红线为实时播放的位置&…

微软小冰主要框架和流程及相关技术

主要是看了知乎上面一位作者写的解析&#xff0c;然后自己在看的过程中顺带记录一下&#xff0c;流程差不多&#xff0c;自己写的话复习比较直观快速 1、Query是用户输入的问题 2、DM&#xff08;对话管理模块&#xff09;层&#xff1a; 这一模块分为&#xff1a;状态追踪&…

如何搭建一套免费开源的微信群机器人问答系统?

前言 自动消息回复和机器人&#xff0c;一直是企业微信的专利。但在非常多场景或者人文习惯中&#xff0c;个人微信和微信群也同样需要它们。比如活动组织者、团购团长、社群管理、私域流量运营者们&#xff0c;都要经营个人微信群。 那就不免会遇到许多信息收集、咨询提问的…

如何设计一个最简化的推荐系统

本文目录结构 1、背景 2、推荐系统初识 3、通用推荐系统架构 4、经典推荐算法 5、实现一个推荐系统 6、存在问题与展望 1、背景 近期由于公司业务系统需要做一个推荐系统&#xff0c;应该说是实现一个相当简单推荐逻辑。毕竟业务场景相当简单&#xff0c;企业的数据规模…

AI 影评家: 用 Hugging Face 模型打造一个电影评分机器人

❝ 本文为社区成员 Jun Chen 为 百姓 AI 和 Hugging Face 联合举办的黑客松所撰写的教程文档&#xff0c;欢迎你阅读今天的第二条推送了解和参加本次黑客松活动。文内含有较多链接&#xff0c;我们不再一一贴出&#xff0c;请在文末阅读原文处点击查看渲染后的 Notebook 文件。…

思否黑马圆满收官,28 支队伍创意使用 Jina AI 三款 AIGC 装备!

上周末&#xff0c;杭州被 AI 热潮所沸腾&#xff01;SegmentFault AI Hackathon 杭州站暨思否 11 周年特别活动在 G5 创投中心拉开帷幕&#xff0c;超过 30 支团队参加了 32 小时的极限编程挑战&#xff0c;他们的产品展示直击评委的心&#xff0c;其中 28 支队伍得到了 Jina …

BUAA-2023软件工程团队项目——选题和需求分析

BUAA MapForum 项目这个作业属于哪个课程2023北航敏捷软件工程这个作业的要求在哪里团队项目-选题和需求分析我在这个课程的目标是学习并实践软件工程开发的方法论。在把握整体流程和内容要素的基础上实践细节&#xff0c;培养开发技术、开发思维、团队协作等能力。这个作业在…

2023年,请不要忽略!图神经网络(GNN)这一匹黑马!

点击下方“AINLPer“&#xff0c;关注我吧 更多干货&#xff0c;第一时间送达 引言 虽然在过去的几个月里&#xff0c;「ChatGPT以及扩散模型(Diffusion Models)等生成式AI一直是人们关注的焦点&#xff0c;但也请不要忽略图神经网络(GNN)的迅速发展」。经过近几年的发展&#…

AI大模型加速RPAxAI时代到来,谁会是RPA领域的杀手级应用?

GPT等AI大模型震撼来袭&#xff0c;基于RPA的超级自动化仍是最佳落地载体 对话弘玑CPO贾岿&#xff0c;深入了解国产RPA厂商对AI大模型的探索与实践 文/王吉伟 关于RPA已死的说法&#xff0c;在中国RPA元年&#xff08;2019年&#xff09;投资机构疯狂抢项目之时就已经有了。…

巧用提示词释放chatgpt的潜力

得益于 ChatGPT 和其他大型语言模型&#xff0c;提示词工程学&#xff08;Prompt Engineering&#xff09;像风一样已迅速成为我们生活的一部分。这是一个全新的非常受欢迎的领域。也就是说&#xff0c;现在是提高您的技能并在提示词工程学方面变得更好的最佳时机。 如果您想知…

【人工智能】只需要1分钟,GPT就帮我生成了思维导图

自从人工智能横空而出&#xff0c;它在人们的生活中产生了巨大的影响。尤其在企业办公领域&#xff0c;借助人工智能的力量&#xff0c;能够迅速产出丰富多样的内容&#xff0c;无论对于企业还是个人都具有重要的帮助。 想象一下&#xff0c;通过与人工智能的合作&#xff0c;您…

Pandas + ChatGPT:交互式数据分析!

Python Pandas是一个为Python编程提供数据操作和分析功能的开源工具包。这个库已经成为数据科学家和分析师的必备工具。它提供了一种有效的方法来管理结构化数据(Series和DataFrame)。 在人工智能领域&#xff0c;Pandas经常用于机器学习和深度学习过程的预处理步骤。Pandas通过…

计算机专业英语口语app,强烈推荐4款学英语必备的英语口语APP

我们大家都学了这么多年英语了&#xff0c;从小学到大学&#xff0c;但大多数人基本上学的都是应试类型的&#xff0c;甚至是哑巴英语。别人问你一句“How are you?”&#xff0c;你只会回答“I’m fine, thank you. And you?” 其他回答都想不起来。要是发音好也就算了&…

自学英语的手机软件哪个好,负基础

我是一名英语过了大学六级的学生&#xff0c;学英语用软件是学不会的&#xff0c;分享一些方法你参考一下吧 学习英语前的第一步&#xff1a;建立英语思维 为什么大家学英语学得这么累&#xff0c;最后依然对英语糊糊涂涂&#xff1f;原因只有一个——就是我们的学习能力太差…