Temu api接口 获取商品详情 数据采集

iDataRiver平台 https://www.idatariver.com/zh-cn/ 提供开箱即用的Temu电商数据采集API,供用户按需调用。

接口使用详情请参考Temu接口文档

接口列表

1. 获取商品详情

参数 类型 是否必填 默认值 示例值 描述
apikey string idr_*** 控制台里复制apikey
country string us 国家code
item_id number 601099518118140 商品id
item_url string https://www.temu.com/1pc-ergonomic-wrist-rest-pad-improve-comfort-and-efficiency-while-working-or-gaming-on-your-computer-or-laptop-g-601099518118140.html?%26top_gallery_url=https%3A%2F%2Fimg.kwcdn.com%2Fproduct%2FFancyalgo%2FVirtualModelMatting%2F0a64188f31b0671119c94307a2cd103b.jpg%26spec_gallery_id=2005365967%26refer_page_sn=10012%26refer_source=0%26freesia_scene=3%26_oak_freesia_scene=3%26_oak_rec_ext_1=NzY%26_oak_gallery_order=2019227234,868963937,1928464894,837145900,927249579 商品链接,可从商品列表里的seo_link_url字段获取

python代码使用requests库请求示例

import requests

# 构建请求URL
# Build request URL
url = "https://api.idatariver.com/api/2019/item/detail/v1"

# 将apikey替换为自己的
# Replace apikey with yours
params = {
	'apikey': 'idr_***',
	'item_id': '601099518118140',
	'item_url': 'https://www.temu.com/1pc-ergonomic-wrist-rest-pad-improve-comfort-and-efficiency-while-working-or-gaming-on-your-computer-or-laptop-g-601099518118140.html?%26top_gallery_url=https%3A%2F%2Fimg.kwcdn.com%2Fproduct%2FFancyalgo%2FVirtualModelMatting%2F0a64188f31b0671119c94307a2cd103b.jpg%26spec_gallery_id=2005365967%26refer_page_sn=10012%26refer_source=0%26freesia_scene=3%26_oak_freesia_scene=3%26_oak_rec_ext_1=NzY%26_oak_gallery_order=2019227234,868963937,1928464894,837145900,927249579',
}

response = requests.get(url, params=params, timeout=60)
data = response.json()

# 打印返回结果
# print response
print(f"Your response is: {data}")

比如采集Temu https://www.temu.com/

商品详情接口返回数据样例

Temu商品详情接口返回API数据样例

2. 按照分类获取商品列表

参数 类型 是否必填 默认值 示例值 描述
apikey string idr_*** 控制台里复制apikey
country string us 国家code
opt_id number 2170 分类id
cate_url number https://www.temu.com/cell-phones-o3-2641.html?opt_level=2&title=Cell Phones&_x_enter_scene_type=cate_tab&leaf_type=bro&show_search_type=0&opt1_id=-13 类别分享url

更多接口支持定制,持续维护中...

总结

分析电商数据可以帮助商家有效优化产品与营销结构,通过使用以上接口可以方便获取Temu的公开商品数据,且计费透明。

posted @ 2024-03-26 20:18  bameofme  阅读(107)  评论(0编辑  收藏  举报