亞馬遜平臺使用API介面透過關鍵字搜尋商品
亞馬遜公司(Amazon,簡稱亞馬遜;NASDAQ:AMZN),2022年營收為5140億美元, 是美國最大的一家網路電子商務公司,位於華盛頓州的西雅圖。是網路上最早開始經營電子商務的公司之一,亞馬遜成立於1994年, 一開始只經營網路的書籍銷售業務,現在則擴及了範圍相當廣的其他產品,已成為全球商品品種最多的網上零售商和全球第二大網際網路企業,在公司名下,也包括了AlexaInternet、a9、lab126、和網際網路電影資料庫(Internet Movie Database,IMDB)等子公司。
通用引數說明
version:API版本
key:呼叫key,測試key:test_api_key
api_name:API型別[item_search,seller_info]
cache:[yes,no]預設yes,將呼叫快取的資料,速度比較快
result_type:[json,xml,serialize,var_export]返回資料格式,預設為json
lang:[cn,en,ru] 翻譯語言,預設cn簡體中文
API:itemsearch 引數說明: q:搜尋關鍵字,支援url cat:分類ID start_price:開始價格 end_price:結束價格 sort:排序[bid,_bid,_sale,_credit,_income,_prom,_comm] (bid:總價,sale:銷量,credit信用/人氣,income收入,月推廣量,comm月支出佣金。加字首為從大到小排序) page:
API:seller_info 引數說明: nick:店鋪id【722324510天貓,2239713891淘寶】
接下來我會展示操作及說明
item_search-按關鍵字搜尋商品
公共引數
名稱 型別 必須 描述
key String 是 呼叫key(必須以GET方式拼接在URL中)
secret String 是 呼叫金鑰(介面-v;18870288846
api_name String 是 API介面名稱(包括在請求地址中)[item_search,item_get,item_search_shop等]
cache String 否 [yes,no]預設yes,將呼叫快取的資料,速度比較快
result_type String 否 [json,jsonu,xml,serialize,var_export]返回資料格式,預設為json,jsonu輸出的內容中文可以直接閱讀
lang String 否 [cn,en,ru]翻譯語言,預設cn簡體中文
version String 否 API版本
請求引數
請求引數:q=鞋子&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=
引數說明:q:搜尋關鍵字
cat:分類ID
start_price:開始價格
end_price:結束價格
sort:排序
page:
響應引數
Version: Date:
名稱 型別 必須 示例值 描述
items
item[] 0 按關鍵字搜尋商品
num_iid
String 0 B014QN8RG0 商品ID
title
String 0 Topsky 遠行客 戶外登山鞋 男鞋耐磨越野跑鞋低幫爬山輕便徒步鞋防滑戶外鞋子 休閒透氣運動鞋 21907A 商品標題
pic_url
String 0 https://images-cn.ssl-images-amazon.com/images/I/51xKSHKPrqL.jpg 商品圖片
promotion_price
Float 0 269.00 優惠價
price
Float 0 269.00 價格
price_range
String 0 價格範圍
sales
String 0 銷量
sample_id
Bigint 0 商品風格標識ID
seller_nick
String 0 約薇女裝官方旗艦店 賣家暱稱
post_fee
Float 0 物流費用
area
String 0 店鋪所在地
請求示例
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.net.URL;
import java.nio.charset.Charset;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.PrintWriter;
import java.net.URLConnection;
public class Example {
private static String readAll(Reader rd) throws IOException {
StringBuilder sb = new StringBuilder();
int cp;
while ((cp = rd.read()) != -1) {
sb.append((char) cp);
}
return sb.toString();
}
public static JSONObject postRequestFromUrl(String url, String body) throws IOException, JSONException {
URL realUrl = new URL(url);
URLConnection conn = realUrl.openConnection();
conn.setDoOutput(true);
conn.setDoInput(true);
PrintWriter out = new PrintWriter(conn.getOutputStream());
out.print(body);
out.flush();
InputStream instream = conn.getInputStream();
try {
BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
String jsonText = readAll(rd);
JSONObject json = new JSONObject(jsonText);
return json;
} finally {
instream.close();
}
}
public static JSONObject getRequestFromUrl(String url) throws IOException, JSONException {
URL realUrl = new URL(url);
URLConnection conn = realUrl.openConnection();
InputStream instream = conn.getInputStream();
try {
BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
String jsonText = readAll(rd);
JSONObject json = new JSONObject(jsonText);
return json;
} finally {
instream.close();
}
}
public static void main(String[] args) throws IOException, JSONException {
// 請求示例 url 預設請求引數已經URL編碼處理
String url = "您自己的apiKey>&secret=<您自己的apiSecret>&q=鞋子&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=";
JSONObject json = getRequestFromUrl(url);
System.out.println(json.toString());
}
}
響應示例
{
"items": {
"url": "%E4%BA%9A%E9%A9%AC%E9%80%8A%E7%BD%91%E7%AB%99&url=search-alias%3Daps&field-keywords=%E9%9E%8B%E5%AD%90&page=1",
"keyword": "鞋子",
"page": 1,
"real_total_results": "109553",
"total_results": 4400,
"item": [
{
"title": "Clarks Originals Trigenic Flex 休閒鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/81oElE1OqML.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 258,
"num_iid": "B015DWSQ3W",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "ECCO 愛步 男士Terracruise Lt低幫登山鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/71-oiP8KhDL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 115,
"num_iid": "B07DTMGDBJ",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Clarks 男式 商務正裝休閒皮鞋 Tilden Free 一腳蹬樂福鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/81eyZpecUSL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 45,
"num_iid": "B00TTJJTBY",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Clarks Men's Nature II Derbys 男士皮鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/81NrXXjyBCL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 301,
"num_iid": "B002SNAYA8",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Clarks 女士Taylor Shine切爾西靴",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/81F46OYGswL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 477,
"num_iid": "B01D1XDXDI",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "ECCO 愛步 男士Irving德比鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/71hrCMSvZ-L.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 45,
"num_iid": "B06Y1MYKHF",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Aigle 艾高 Tenere Light 女士高幫徒步遠足鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/81lpOg3p5YL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 23,
"num_iid": "B00SVDG4IA",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "ECCO 愛步 Biom Fjuel男士跑鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/612w5-z38KL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 208,
"num_iid": "B00VJ32RGC",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Vans 範斯 Ward 女士絨面革/帆布低幫運動鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/71qSCIK2uRL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 51,
"num_iid": "B078PH6WC2",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "ECCO 愛步 男士Melbourne 粗皮鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/71l-4hFjz2L.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 71,
"num_iid": "B076ZXM14W",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Clarks Hamble Oak 女士皮鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/71tQGQnlV7L.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 345,
"num_iid": "B0050N5DO0",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Clarks Men's Derby 男士繫帶樂福鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/71v+FEKfwmL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 39,
"num_iid": "B07F8Y4276",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Skechers Flex Advantage Sr 男士一腳蹬運動鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/71H1LFFa2vL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 3,
"num_iid": "B07TVPNVHT",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Clarks 女士Linvale Jerica閉趾高跟鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/61BZB7zXRzL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 18,
"num_iid": "B07B8VX1VJ",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "ECCO 愛步 HELSINKI 男士 德比鞋 皮鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/81uCulyo7ML.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 33,
"num_iid": "B001O9CNQK",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "ECCO 愛步 男士Exostridem訓練鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/71f2+BDePaL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 64,
"num_iid": "B07MG97GZ6",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "ECCO 愛步 歐文Irving系列 男式一腳蹬式便鞋 樂福鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/61yIfAPZqIL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 15,
"num_iid": "B075JR8C1K",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "ECCO 愛步 女士 Terracruise Lt 戶外登山運動鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/81jRl0XgawL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 29,
"num_iid": "B07DTH3MVB",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Gabor 女式時尚包頭高跟鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/610QKuMbkdL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 0,
"num_iid": "B07Q32QW8B",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Clarks 男子Tilden Plain 德比牛津平底鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/61+ilt1JVfL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 152,
"num_iid": "B00TTJHAQK",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "ECCO 愛步 Soft 2 柔酷2號 女式膠底鞋 運動休閒鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/81qNSisvieL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 9,
"num_iid": "B00V39NEXC",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Puma 彪馬 Axis 中性成人運動鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/71M6zM-zUOL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 19,
"num_iid": "B07F2Q6PXV",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Clarks 女式 Orinoco Club 切爾西靴",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/91g88Yv+9ML.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 91,
"num_iid": "B00475B8ZU",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Gabor 女士時尚高跟鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/71fKlLnJoLL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 0,
"num_iid": "B07NSHGXQP",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Clarks Vennor Walk 男士皮鞋 德比鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/51gYva3NXML.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 11,
"num_iid": "B075DLRK1B",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "4堂時尚搭配課:鞋子、包包、配飾、內衣",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/412aP-bgzXL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 0,
"num_iid": "B0757LR5BZ",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "PUMA 彪馬 Tazon 6 Fracture FM 男士運動鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/61kyjQ9kFNL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 24,
"num_iid": "B01C3LK6DO",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "SAFERUNSAFERUN一次性鞋墊(女性用尺寸) 50雙裝 39(約24.5cm)根據鞋子的大小剪刀剪裁 吸收不適的汗水並保持鞋內乾爽 紙鞋墊",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/51M8q0ip7AL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 0,
"num_iid": "B07S1B8S7S",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Clarks 男士 Becken Cap 德比鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/51+EeASfK+L.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 43,
"num_iid": "B07DPNB7GS",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "PUMA 彪馬 中性款 Anzarun Lite Jr 運動鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/71zMSgErQQL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 0,
"num_iid": "B07S8QCD6S",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "VANS 範斯 Filmore Decon 女式平底鞋 運動休閒鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/713cs0WdJRL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 27,
"num_iid": "B07FXQDNR8",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "2Toms 無臭鞋子和齒輪噴霧 - 消除汗液產生的異味(8 盎司瓶裝)",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/7176k-rCxNL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 283,
"num_iid": "B003WPPC3K",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Clarks 其樂 男士布洛克烤花 商務休閒皮鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/61mu+HfBEdL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 38,
"num_iid": "B071WPJT5N",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Columbia 男士 Fairbanks 低幫運動鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/81D02hrlBiL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 503,
"num_iid": "B07RJTKTWY",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Ecco 愛步 Exostride Summer Trail 男士戶外運動鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/71psAoAXlZL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 17,
"num_iid": "B07V9PR2RH",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Gabor 女士休閒淺口芭蕾舞鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/61pVg2UBW6L.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 0,
"num_iid": "B07Q41LKVQ",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "HÖGL Ballerinas Boulevard 10 0-120014",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/61QLwXIsAHL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 4,
"num_iid": "B00M65BY3E",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Kiwi Shoe Passion 女士凝膠鞋墊,隱形,防滑減震,1 雙",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/81vmIX6AKsL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 0,
"num_iid": "B01HI8TG3S",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Gabor 女士舒適時尚包頭高跟鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/61zyVgZX8fL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 6,
"num_iid": "B07Q32W85Z",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "The Bridge Story Uomo 錢包 IV 皮革 10 釐米",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/71ylTuyfDfL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 0,
"num_iid": "B0093AZERC",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "ECCO 愛步 Men’s Exostrike Mid 戶外男靴",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/8162OzezrLL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 56,
"num_iid": "B07C6894LM",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Merrell 男士 Move Glove 交叉訓練鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/71DSdhillpL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 44,
"num_iid": "B07KM3DBW2",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Harmonia bloom 鞋系列 [工作靴/黑色]",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/61UQhHTccQL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 0,
"num_iid": "B08WQ2891P",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Timberland 女士 Nellie 雙重防水踝靴",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/81E8RF2nVhL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 316,
"num_iid": "B005JQS5F2",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Skechers 斯凱奇 女式 Synergy 2.0 重金屬運動鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/71TtAXOzOvL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 0,
"num_iid": "B07GFGBB4J",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Nike 耐克 Wearallday 男士跑步鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/61-Hhmo3BYL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 0,
"num_iid": "B0838KJV9T",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Clarks Un系列 Aldric Park 男式皮鞋 德比鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/812lwANECgL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 83,
"num_iid": "B0756D885V",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "Skechers 斯凱奇 女士 Go Walk 5 -Limelight 一腳蹬運動鞋",
"pic_url": "https://images-cn.ssl-images-amazon.cn/images/I/71j+1cAjXEL.jpg",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 1,
"num_iid": "B07P29WJFW",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
},
{
"title": "",
"pic_url": "",
"price": "",
"promotion_price": "",
"price_range": null,
"sales": 0,
"num_iid": "",
"sample_id": "",
"seller_nick": "",
"post_fee": "",
"area": ""
}
],
"related_keywords": "",
"nav_catcamp": null,
"nav_filter": null
},
"error_code": "0000",
"reason": "ok",
"secache": "e299413c54b7d53e00a8046fc5bd7bdb",
"secache_time": 1615425986,
"secache_date": "2021-03-11 09:26:26",
"translate_status": "",
"translate_time": 0,
"language": {
"default_lang": "cn",
"current_lang": "cn"
},
"error": "",
"cache": 0,
"api_info": "today:0 max:10000",
"execution_time": 5.169,
"server_time": "Beijing/2021-03-11 09:26:26",
"client_ip": "106.6.35.144",
"call_args": {
"q": "鞋子"
},
"api_type": "amazon",
"translate_language": "zh-CN",
"translate_engine": "google_cn",
"server_memory": "2.99MB",
"request_id": "gw-3.604971be1ca59"
}
文章內容有限,歡迎私信溝通交流!
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/70028219/viewspace-2946910/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 淘寶API,按關鍵字搜尋淘寶商品API
- 亞馬遜國際按關鍵字搜尋商品 API 返回值說明亞馬遜API
- 電商API分享:京東按關鍵字搜尋商品API
- 電商API介面:京東按關鍵字搜尋商品 批次抓取 資料爬蟲API爬蟲
- 京東按關鍵字搜尋商品 API 返回值說明API
- 1688關鍵字搜尋新品資料API介面(item_search_new-按關鍵字搜尋新品API
- 1688API介面:關鍵字搜尋1688商品列表 1688中國工廠API
- 電商API介面:lazada按關鍵字搜尋商品(引數、返回值說明)API
- item_search - 按關鍵字搜尋商品
- 1688關鍵字搜尋介面
- 如何關鍵字搜尋下載敦煌網、淘寶等平臺的商品圖片
- 淘寶API分享:關鍵字搜尋淘寶商品,獲取商品ID,詳情資料API
- 阿里巴巴按關鍵字搜尋商品 API 返回值說明阿里API
- 唯品會按關鍵字搜尋vip商品 API 返回值說明API
- 1688中國站按關鍵字搜尋新品資料API介面API
- 1688關鍵字搜尋介面測試
- 關鍵詞搜尋淘特商品介面,淘特商品列表介面,淘特商品詳情介面程式碼展示
- 淘寶API介面:獲得關鍵詞搜尋推薦API
- 解鎖1688關鍵字搜尋API介面:從海量商品中快速定位,開啟商業智慧新篇章API
- 1688商品列表介面,關鍵詞搜尋1688商品介面,1688店鋪商品介面封裝程式碼教程封裝
- 義烏購關鍵字搜尋API介面技術詳解與程式碼示例API
- 淘寶關鍵詞搜尋介面,淘寶商品列表介面,淘寶商品銷量排序介面資料採集程式碼展示排序
- 透過1688店鋪所有商品API介面一鍵獲取店鋪所有商品資訊API
- php獲取1688阿里巴巴關鍵字搜尋新品資料API介面PHP阿里API
- JavaScript 搜尋關鍵字高亮效果JavaScript
- javascript搜尋關鍵字高亮效果JavaScript
- 多個電商平臺API介面聚合解析,實現根據關鍵詞取商品列表API
- 搜尋Oracle DDL中的關鍵字Oracle
- 搜尋檔案中的關鍵字
- Idea全域性搜尋關鍵字Idea
- 全網商品搜尋|1688|Taobao|天貓|京東api介面展示示例API
- 拼多多商品資料如何透過api介面獲取API
- 跨平臺銷售策略:透過API同步不同市場的商品資料API
- 淘寶/天貓搜尋同款的商品 API 介面返回值說明API
- 使用1688開放平臺API介面獲取商品詳情資訊API
- item_search 淘寶/天貓按關鍵字搜尋淘寶商品 API 呼叫說明 引數返回值示例 測試可用API
- 如何高效利用 GitHub 關鍵字進行搜尋Github
- SQL隱碼攻擊點搜尋關鍵字SQL