iDataRiver平台 https://www.idatariver.com/zh-cn/ 提供开箱即用的taobao淘宝电商数据采集API,供用户按需调用。
接口使用详情请参考淘宝接口文档
接口列表
1. 获取商品详情
参数 | 类型 | 是否必填 | 默认值 | 示例值 | 描述 |
---|---|---|---|---|---|
apikey | string | 是 | idr_*** | 从控制台里复制apikey | |
item_id | number | 是 | 627945660265 | 商品id |
python代码使用requests库请求示例
import requests
# 构建请求URL
# Build request URL
url = "https://api.idatariver.com/api/27ad/item/detail/v1"
# 将apikey替换为自己的
# Replace apikey with yours
params = {
'apikey': 'idr_***',
'item_id': '627945660265',
}
response = requests.get(url, params=params, timeout=60)
data = response.json()
# 打印返回结果
# print response
print(f"Your response is: {data}")
比如采集淘宝 https://www.taobao.com/
淘宝商品详情接口返回数据样例
2. 店铺商品列表
参数 | 类型 | 是否必填 | 默认值 | 示例值 | 描述 |
---|---|---|---|---|---|
apikey | string | 是 | idr_*** | 从控制台里复制apikey | |
shop_id | number | 是 | 102176025 | 店铺id | |
page_id | number | 是 | 1 | 翻页参数 |
3. 搜索商品
参数 | 类型 | 是否必填 | 默认值 | 示例值 | 描述 |
---|---|---|---|---|---|
apikey | string | 是 | idr_*** | 从控制台里复制apikey | |
query | string | 是 | iphone | 查询关键词 | |
page_id | number | 是 | 1 | 翻页参数 |
更多接口支持定制,持续维护中...
总结
分析电商数据可以帮助商家有效优化产品与营销结构,通过使用以上接口可以方便获取淘宝的公开商品数据,且计费透明。
标签:apikey,示例,接口,商品,api,淘宝,电商,id From: https://www.cnblogs.com/bameofme/p/18049675