temu跨境电商按关键字搜索temu商品 API 返回值说明

简述:

Temu是拼多多旗下的跨境电商平台,于2022年9月1日正式上线。该平台定位偏中端用户,首站面向北美市场,后续逐渐扩展到加拿大、新西兰、澳大利亚以及英国等地。Temu的名字含义为“Team Up, Price Down”,与拼多多的理念相似,强调通过团购等方式降低商品价格。

Temu的页面风格简洁明了,商品图片质量较高,橙色Logo中除了TEMU的英文,还有裙子、玩具马、高跟鞋和箱包图案,与平台目前主打的品类一致。平台优先招募有北美市场供应商经验、有跨境电商平台和独立站运营经验的卖家。

自上线以来,Temu的发展势头强劲,下载量不断攀升,击穿地板价的商品在欧美市场掀起了一阵狂潮,吸引了众多电商卖家入驻。在上线仅一周的时间内,Temu便冲进了美国购物应用的第14名,随后更是超越Amazon Shopping登顶美国App Store免费购物应用榜单第一。

对于卖家来说,Temu平台提供了养号测评的优势,关注产品Listing的评价数量和星级是推动店铺发展的关键。同时,Temu的团购模式也为卖家提供了更多的销售机会,通过团购等方式吸引更多消费者,提高销售额。

总之,Temu作为拼多多的跨境电商平台,以其简洁明了的页面风格、高质量的商品图片以及团购等优惠方式,吸引了众多消费者的关注和喜爱,同时也为卖家提供了更多的销售机会和发展空间。

一、公共参数

请求地址: https://api-gw.cn/temu/item_search

二、请求参数

请求参数:q=shoe&start_price=&end_price=&page=&list_id=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=

参数说明:q:搜索关键字
cat:分类ID
start_price:开始价格
end_price:结束价格
list_id:列表id
sort:排序[bid,_bid,bid2,_bid2,_sale,_credit]
  (bid:总价,bid2:商品价格,sale:销量,credit信用,加_前缀为从大到小排序)
page:

三、请求示例

<?php

// 请求示例 url 默认请求参数已经URL编码处理
// 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.cn/help/demo/sdk/demo-sign.php
$method = "GET";
$url = "https://api-gw.cn/temu/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=shoe&start_price=&end_price=&page=&list_id=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=";
$curl = curl_init();
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST,FALSE);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER,FALSE);
curl_setopt($curl, CURLOPT_FAILONERROR, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HEADER, true);
curl_setopt($curl, CURLOPT_ENCODING, "gzip");
var_dump(curl_exec($curl));
?>

四、响应示例

{
        "items": {
            "page": 1,
            "page_size": 120,
            "has_more": true,
            "data_from": "app",
            "item": [
                {
                    "title": "2022 Minimalist Mens Fashion Ultra Thin Watches Simple Men Business Stainless Steel Mesh Belt Quartz Watch",
                    "pic_url": "https:\/\/img.kwcdn.com\/product\/Fancyalgo\/VirtualModelMatting\/c7ef2fecd0a44b17857a152b674969fb.jpg",
                    "price": "2.09",
                    "orginal_price": "2.09",
                    "sales": "90K+",
                    "num_iid": 601099512645657,
                    "detail_url": "https:\/\/www.temu.com\/2022-minimalist-mens-fashion-ultra-thin-watches-simple-men-business-stainless-steel-mesh-belt-quartz-watch-g-601099512645657.html?&top_gallery_url=https%3A%2F%2Fimg.kwcdn.com%2Fproduct%2FFancyalgo%2FVirtualModelMatting%2Fc7ef2fecd0a44b17857a152b674969fb.jpg&spec_gallery_id=7257449&refer_page_sn=10009&refer_source=0&freesia_scene=2&_oak_freesia_scene=2&_oak_rec_ext_1=MjA5",
                    "list_id": "896ae23b45bdb231845f7d33fb5eaadc_1708653658747"
                },

                {
                    "title": "POEDAGAR Waterproof Luminous Calendar Mens Quartz Watch Stainless Steel Wrist Watch, Ideal choice for Gifts",
                    "pic_url": "https:\/\/img.kwcdn.com\/product\/Fancyalgo\/VirtualModelMatting\/af19f3e3847f330cebe874a0665b4ad2.jpg",
                    "price": "8.98",
                    "orginal_price": "8.98",
                    "sales": "20K+",
                    "num_iid": 601099520399445,
                    "detail_url": "https:\/\/www.temu.com\/poedagar-waterproof-luminous-calendar-mens-quartz-watch-stainless-steel-wrist-watch-g-601099520399445.html?&top_gallery_url=https%3A%2F%2Fimg.kwcdn.com%2Fproduct%2FFancyalgo%2FVirtualModelMatting%2Faf19f3e3847f330cebe874a0665b4ad2.jpg&spec_gallery_id=2011275199&refer_page_sn=10009&refer_source=0&freesia_scene=2&_oak_freesia_scene=2&_oak_rec_ext_1=ODk4",
                    "list_id": "896ae23b45bdb231845f7d33fb5eaadc_1708653658747"
                }
            ]
        }
    }

  • 4
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值