凡邦亚马逊国际获得AMAZON商品评论 API 返回值说明

item_review-获得AMAZON商品评论 [查看演示] API测试工具 注册开通

amazon.item_review

公共参数

请求地址: https://api-gw.fan-b.com/amazon/item_review

名称 类型 必须 描述
keyString调用key(必须以GET方式拼接在URL中)
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=B016LO4UTA&domain=com&page=1&sort=0

参数说明:num_iid:AMAZON商品ID
domain:站点
page:页码
sort:排序(默认为0->热门评论,1->最近)

响应参数

Version: Date:2023-12-18

名称 类型 必须 示例值 描述
items
items[] 0 获取商品评论
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.fan-b.com/amazon/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com&page=1&sort=0"
<?php

// 请求示例 url 默认请求参数已经URL编码处理
// 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.fan-b.com/help/demo/sdk/demo-sign.php
$method = "GET";
$url = "https://api-gw.fan-b.com/amazon/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com&page=1&sort=0";
$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));
?>
<?php
//定义缓存目录和引入文件
define("DIR_RUNTIME","runtime/");
define("DIR_ERROR","runtime/");
define("SECACHE_SIZE","0");
//SDK下载地址 https://open.fan-b.com/help/demo/sdk/onebound-api-sdk.zip
include ("ObApiClient.php");

$obapi = new otao\ObApiClient();
$obapi->api_url = "http://api-gw.fan-b.com/";
$obapi->api_urls = array("http://api-gw.fan-b.com/","http://api-1.fan-b.com/");//备用API服务器
$obapi->api_urls_on = true;//当网络错误时,是否启用备用API服务器
$obapi->api_key = "<您自己的apiKey>";
$obapi->api_secret = "<您自己的apiSecret>";
$obapi->api_version ="";
$obapi->secache_path ="runtime/";
$obapi->secache_time ="86400";
$obapi->cache = true;

$api_data = $obapi->exec(
                array(
	                "api_type" =>"amazon",
	                "api_name" =>"item_review",
	                "api_params"=>array (
  'num_iid' => 'B016LO4UTA',
  'domain' => 'com',
  'page' => '1',
  'sort' => '0',
)
                )
            );
 var_dump($api_data);
?>
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 = "https://api-gw.fan-b.com/amazon/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com&page=1&sort=0";
		JSONObject json = getRequestFromUrl(url);
		System.out.println(json.toString());
	}

}
//using System.Net.Security;
//using System.Security.Cryptography.X509Certificates;
private const String method = "GET";
static void Main(string[] args)
{
	String bodys = "";
	// 请求示例 url 默认请求参数已经做URL编码
	String url = "https://api-gw.fan-b.com/amazon/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com&page=1&sort=0";
	HttpWebRequest httpRequest = null;
	HttpWebResponse httpResponse = null; 
	if (url.Contains("https://"))
	{
		ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
		httpRequest = (HttpWebRequest)WebRequest.CreateDefault(new Uri(url));
	}
	else
	{
		httpRequest = (HttpWebRequest)WebRequest.Create(url);
	}
	httpRequest.Method = method;
	if (0 < bodys.Length)
	{
		byte[] data = Encoding.UTF8.GetBytes(bodys);
		using (Stream stream = httpRequest.GetRequestStream())
		{
		stream.Write(data, 0, data.Length);
		}
	}
	try
	{
		httpResponse = (HttpWebResponse)httpRequest.GetResponse();
	}
	catch (WebException ex)
	{
		httpResponse = (HttpWebResponse)ex.Response;
	}
	Console.WriteLine(httpResponse.StatusCode);
	Console.WriteLine(httpResponse.Method);
	Console.WriteLine(httpResponse.Headers);
	Stream st = httpResponse.GetResponseStream();
	StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8"));
	Console.WriteLine(reader.ReadToEnd());
	Console.WriteLine("\n");
}
public static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
{
	return true;
}
# 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.fan-b.com/amazon/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com&page=1&sort=0"
headers = {
    "Accept-Encoding": "gzip",
    "Connection": "close"
}
if __name__ == "__main__":
    r = requests.get(url, headers=headers)
    json_obj = r.json()
    print(json_obj)
url := fmt.Sprintf("https://api-gw.fan-b.com/amazon/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com&page=1&sort=0", params)
req, err := http.NewRequest("GET", url, nil)
if err != nil {
    panic(err)
}
req.Header.Set("Authorization", apiKey)

client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
    panic(err)
}
defer resp.Body.Close()

body, err := ioutil.ReadAll(resp.Body)
if err != nil {
    panic(err)
}

fmt.Println(string(body))
fetch('https://api-gw.fan-b.com/amazon/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({"num_iid":"B016LO4UTA","domain":"com","page":"1","sort":"0"})// request parameters here
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error));
<script src="js/obapi.js"></script>
<script type="text/javascript">
obAPI.config({
    debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
    api_url: "https://api-gw.fan-b.com", // 
    api_key: "<您自己的apiKey>", // 必填,
    api_secret: "<您自己的apiSecret>", //
    lang: "cn", // 
    timestamp: "", // 必填,生成签名的时间戳
    nonceStr: "", // 必填,生成签名的随机串
    signature: "",// 必填,签名
    jsApiList: [] // 必填,需要使用的JS接口列表
});
</script>
<div id="api_data_box"></div>
<script type="text/javascript">
obAPI.exec(
     {
     "api_type":"amazon",
     "api_name" : "item_review",
     "api_params": {"num_iid":"B016LO4UTA","domain":"com","page":"1","sort":"0"}//num_iid=B016LO4UTA&domain=com&page=1&sort=0,#具体参数请参考文档说明
     },
     function(e){
        document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
     }
);
</script>
require "net/http"
require "uri"
url = URI("https://api-gw.fan-b.com/amazon/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com&page=1&sort=0")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body 
import Foundation
 
let url = URL(string: "https://api-gw.fan-b.com/amazon/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com&page=1&sort=0")!
let task = URLSession.shared.dataTask(with: url) { data, response, error in
    guard let data = data else {
        print("Error: No data was returned")
        return
    }
     
    if let data = String(data: data, encoding: .utf8) {
        print(data)
    }
}
task.resume()
NSURL *myUrl = [NSURL URLWithString:@"https://api-gw.fan-b.com/amazon/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com&page=1&sort=0"];

NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:myUrl cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:60.0];

[request setHTTPMethod:@"GET"];
NSError *error;
NSURLResponse *response;

NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];

NSString *result = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@"%@",result);
#include<stdio.h>
#include <stdlib.h>
#include<string.h>
#include<curl/curl.h>

int main(){
  CURL *curl;  
  CURLcode res;   
  struct curl_slist *headers=NULL; 

  char url[] = "https://api-gw.fan-b.com/amazon/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com&page=1&sort=0";
  curl_global_init(CURL_GLOBAL_ALL); 
  curl = curl_easy_init(); 

  if(curl) {
    curl_easy_setopt(curl, CURLOPT_URL,url);
    headers = curl_slist_append(headers, "Content-Type: application/json"); 

    curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); 
    res = curl_easy_perform(curl);

    if(res != CURLE_OK){
      printf("curl_easy_perform(): %s\n",curl_easy_strerror(res));                     
    }
    curl_easy_cleanup(curl);          
  }
  curl_global_cleanup();
  return 0;
}
#include<iostream>
#include<string>
#include<curl/curl.h>

using namespace std;

static size_t Data(void *ptr, size_t size, size_t nmemb, string *stream)
{
    std::size_t realSize = size *nmemb;
    auto *realPtr = reinterpret_cast<char *>(ptr);

    for (std::size_t i=0;i<realSize;++i) {
        *(stream) += *(realPtr + i);
    }

    return realSize;
}

int main(){

     CURL *curl;
     CURLcode result;
     string readBuffer;
     curl = curl_easy_init();

     if(curl) {

         curl_easy_setopt(curl, CURLOPT_URL, "https://api-gw.fan-b.com/amazon/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com&page=1&sort=0");
         curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
         curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, Data);
         curl_easy_setopt(curl, CURLOPT_WRITEDATA, &readBuffer);

         result = curl_easy_perform(curl);

         if(result == CURLE_OK) {
             cout<<readBuffer<<endl;
         }else{
             cerr<<"curl_easy error:"<<curl_easy_strerror(result)<<endl;
         }

         curl_easy_cleanup(curl);
     }
     return 0;
}
const https = require("https");

https.get("https://api-gw.fan-b.com/amazon/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com&page=1&sort=0", (resp) => {
  let data = "";

  resp.on("data", (chunk) => {
    data += chunk;
  });

  resp.on("end", () => {
    console.log(data);
  });
}).on("error", (err) => {
  console.log("Error: " + err.message);
});
import java.net.HttpURLConnection
import java.net.URL

fun main() {
    val url = URL("https://api-gw.fan-b.com/amazon/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com&page=1&sort=0")
    val con = url.openConnection() as HttpURLConnection
    con.requestMethod = "GET"

    val responseCode = con.responseCode
    if (responseCode == HttpURLConnection.HTTP_OK) { // success
        val inputLine = con.inputStream.bufferedReader().use { it.readText() }
        println(inputLine)
    } else {
        println("GET request failed")
    }
}
use std::io::{self, Read};
use reqwest;

fn main() -> io::Result<()> {

    let mut resp = reqwest::get("https://api-gw.fan-b.com/amazon/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com&page=1&sort=0")?;
    let mut content = String::new();
    resp.read_to_string(&mut content)?;

    println!("{}", content);

    Ok(())
}

library(httr)
r <- GET("https://api-gw.fan-b.com/amazon/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com&page=1&sort=0")
content(r)
url = "https://api-gw.fan-b.com/amazon/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com&page=1&sort=0";
response = webread(url);
disp(response);
响应示例
{
    "items": {
        "_ddf": "curry",
        "item": [
            {
                "buy_case": "Verified Purchase",
                "content": "Softness and Comfort: The Clean Skin Club Clean Towels XL™ are incredibly soft and gentle on the skin, making them perfect for sensitive or acne-prone skin. Unlike regular washcloths, these towels are ultra-soft and non-abrasive, so they cleanse your face without causing any irritation. Whether you’re using them to remove makeup, apply toner, or dry your face, these towels provide a luxurious feel that you’ll love.Hygiene: One of the standout features of these towels is their disposability, which ensures that you’re using a fresh, clean towel every time. This is particularly beneficial for those concerned about maintaining clear skin, as reusing traditional towels can harbor bacteria that contribute to breakouts. These towels offer a simple solution to maintaining optimal hygiene in your skincare routine.Size and Durability: The XL size of these towels is perfect for covering your entire face, and there’s plenty of surface area to remove makeup, cleanse, or apply skincare products. Despite being disposable, they are surprisingly durable and don’t tear or fall apart during use. They’re strong enough to handle even the toughest makeup removal tasks, including waterproof mascara and long-lasting foundations.Biobased and Eco-Friendly: These towels are made from 100% USDA-certified biobased material, which means they’re not only good for your skin but also environmentally friendly. The fact that they’re biodegradable adds peace of mind, knowing that you’re not contributing to unnecessary waste. It’s a great option for those looking to make their skincare routine more sustainable without compromising on quality.Versatility: These towels are incredibly versatile and can be used in multiple ways. They work wonderfully as makeup remover wipes, cleansing cloths, or even as a gentle exfoliating tool when paired with your favorite cleanser. Their strength and softness make them suitable for a variety of tasks beyond just facial care, like cleaning delicate items or baby care.Packaging: The towels come in a neat, compact box that makes them easy to store and access. The packaging is designed to keep the towels clean and ready to use, and the box is small enough to fit on your bathroom counter or in a drawer. The 50-count pack is convenient and ensures you have a good supply on hand for daily use.Value for Money: While disposable, these towels are a worthwhile investment for those who prioritize skin hygiene and quality. The price reflects the excellent quality and the peace of mind that comes with using a fresh towel each time. Given the benefits they provide, they offer great value for anyone serious about their skincare routine.Conclusion: The Clean Skin Club Clean Towels XL™ are a fantastic addition to any skincare regimen. They are soft, hygienic, eco-friendly, and versatile, making them perfect for anyone looking to elevate their skincare routine. Whether you’re concerned about acne, sensitive skin, or simply want a more hygienic option for face towels, these disposable face towels are a game-changer. Highly recommended for anyone who values clean skin and sustainability!",
                "logo": "https://images-na.ssl-images-amazon.com/images/S/amazon-avatars-global/d0e1c03c-2559-42c5-b420-9b4c1a1df5f6._CR0,32.0,269,269_SX48_.jpg",
                "sku_name": "Pattern Name: 50 Count (Pack of 1)",
                "star": "5.0",
                "time": "Reviewed in the United States on August 24, 2024",
                "title": "“Soft, Hygienic, and Eco-Friendly: The Perfect Face Towels!”",
                "user": "Tisha"
            },
            {
                "buy_case": "Verified Purchase",
                "content": "I love using these tissues whether it for my face or wiping off the water from the counter from my face wash routine. One thing I really appreciate is that they don’t tear easily, even when wet. Overall, these face napkins are high quality and super convenient — perfect for home, travel, or on-the-go. Highly recommend them for anyone looking for a reliable, soft, and versatile option!",
                "logo": "https://images-na.ssl-images-amazon.com/images/S/amazon-avatars-global/22510444-2c64-46a1-99e8-d1f4daf7de3e._CR62,0,375,375_SX48_.jpg",
                "sku_name": "Pattern Name: 100 Count (Most Popular!)",
                "star": "5.0",
                "time": "Reviewed in the United States on October 13, 2024",
                "title": "Soft, Absorbent, and Perfect for Everyday Use!",
                "user": "Ty"
            },
            {
                "buy_case": "Verified Purchase",
                "content": "These are great! Easy, disposable and antibacterial. Save time on laundry and always guarantee a clean face. The textured side is great for exfoliating. Don’t forget it can be used to dry your sink and counter after washing!",
                "logo": "https://images-na.ssl-images-amazon.com/images/S/amazon-avatars-global/default._CR0,0,1024,1024_SX48_.png",
                "sku_name": "Pattern Name: Supreme Towels XL",
                "star": "5.0",
                "time": "Reviewed in the United States on October 5, 2024",
                "title": "Amazing!",
                "user": "Mary Krueger"
            },
            {
                "buy_case": "Verified Purchase",
                "content": "These are great! Easy, disposable and antibacterial. Always guarantee a clean face. Super soft.",
                "logo": "https://images-na.ssl-images-amazon.com/images/S/amazon-avatars-global/eef1e3a7-db3d-47eb-9273-aa160d87bbfa._CR0,0,393,393_SX48_.jpg",
                "sku_name": "Pattern Name: 50 Count (Pack of 1)",
                "star": "5.0",
                "time": "Reviewed in the United States on October 14, 2024",
                "title": "Love them",
                "user": "❤️ Sedalia ❤️"
            },
            {
                "buy_case": "Verified Purchase",
                "content": "I love these towelettes and would give them 5 stars but they have a very strong smell to them that isn’t pleasant at all. I’ve put them out to air the smell out but it doesn’t do much. Aside from the smell they work great! They’re thick and can be washed and used over again and don’t fall apart yet are extremely soft and gentle on the skin. I never noticed a major difference either in clearing my acne just because they’re “clean”. They’re just convenient to have.",
                "logo": "https://images-na.ssl-images-amazon.com/images/S/amazon-avatars-global/default._CR0,0,1024,1024_SX48_.png",
                "sku_name": "Pattern Name: 50 Count (Pack of 1)",
                "star": "4.0",
                "time": "Reviewed in the United States on September 15, 2024",
                "title": "Great but there’s a smell",
                "user": "Mari"
            },
            {
                "buy_case": "Verified Purchase",
                "content": "Super soft towels that will dry your face after every wash! Way cleaner than using a hand towel that carries all the germs! My face has less breakouts and the quality is amazing. It does not disintegrate as soon as it gets wet!",
                "logo": "https://images-na.ssl-images-amazon.com/images/S/amazon-avatars-global/default._CR0,0,1024,1024_SX48_.png",
                "sku_name": "Pattern Name: 50 Count (Pack of 1)",
                "star": "5.0",
                "time": "Reviewed in the United States on September 21, 2024",
                "title": "Must have!",
                "user": "Hayley Bennett"
            },
            {
                "buy_case": "Verified Purchase",
                "content": "I really like these, a lot!!! They are durable, they actually do help clean deeper into pores. They make great sweat rags in the summer or in general. I havent but imagine you can use them more than once, once dried. They really do replace wash cloths. I mean i get these once a month now. The size is large enough to just use sections of the towels for specific cleaning e.g ears, neck, and they really do aid in cleaning. I have no negatives to say about these, except i do with they were cheaper so i could get more, but if your thinking of getting these.......JUST BUY THEM!!!!! Thank me later!",
                "logo": "https://images-na.ssl-images-amazon.com/images/S/amazon-avatars-global/1d7a7592-7b42-4075-8608-a57faa6111e4._CR0,0,443,443_SX48_.jpg",
                "sku_name": "Pattern Name: Supreme Towels XL",
                "star": "5.0",
                "time": "Reviewed in the United States on October 4, 2024",
                "title": "These are a part of my daily face cleaning routine, if you care about your face, get these!!!!",
                "user": "Eddie Pop"
            },
            {
                "buy_case": "Verified Purchase",
                "content": "I purchase the Clean Skin Club XL towels on a regular basis. They are soft, thick and durable; and they hold up really well (wet or dry). Each towel is about 10” x 12” so they work really well as a face towel and/or hand towel. They are made of a semi-synthetic fiber called viscose (aka rayon). According to their website, the viscose that Clean Skin Club uses to make their XL towels is derived from eucalyptus wood pulp. Technically, fiber derived from bamboo or eucalyptus wood is natural, but it’s labeled semi-synthetic due to the fact that the wood pulp is processed into a fiber. An example of a synthetic fiber would be polyester, whereas viscose/rayon have more in common with all natural fibers such as cotton — gentle on the skin and good for the environment. I have super sensitive skin and these are the best disposable towels I have ever used. Highly recommend!",
                "logo": "https://images-na.ssl-images-amazon.com/images/S/amazon-avatars-global/default._CR0,0,1024,1024_SX48_.png",
                "sku_name": "Pattern Name: 50 Count (Pack of 1)",
                "star": "5.0",
                "time": "Reviewed in the United States on August 13, 2024",
                "title": "Excellent Quality Product",
                "user": "Amazon Customer"
            },
            {
                "buy_case": "Verified Purchase",
                "content": "As someone who prioritizes skin health and follows expert recommendations, Ive recently started using these skincare products. I can already see a noticeable difference in my complexion. My esthetician even advised me to incorporate them into my routine, which reassured me of their effectiveness. Theyve been clinically shown to help achieve visibly clearer skin with less irritation, and Ive experienced a significant reduction in redness.One key tip I now swear by is always using a clean, bacteria-free towel to dry my face—this has helped keep breakouts at bay. Im also impressed by the advanced cellulose fiber technology that supports overall skin health and strengthens the skin barrier. Its the little things like this that make a big difference.Whats even better? These products are 100% vegan and cruelty-free, so I can feel good about what Im putting on my skin and know its aligned with my values. If youre looking for skincare that works while being ethical, this is a must-try!",
                "logo": "https://images-na.ssl-images-amazon.com/images/S/amazon-avatars-global/default._CR0,0,1024,1024_SX48_.png",
                "sku_name": "Pattern Name: 50 Count (Pack of 1)",
                "star": "5.0",
                "time": "Reviewed in the United States on October 4, 2024",
                "title": "Glow Up with Confidence: Skincare Backed by Experts and Ethics",
                "user": "jhurst"
            },
            {
                "buy_case": "Verified Purchase",
                "content": "Great product and concept.I have a towel rack warmer which already helps prevent bacteria growth on towels. Our family use Nomadix and Packtowl towels that are also quick to dry. Also towels and bedding in my household get washed every weekend. On top of all that, we wash our face every single night before getting into bed (even of we shower too.) this product is the cherry on top of our clean routine at home and I’m here for it! After each use of these towelettes, we’re also using it to dry the sink (bacteria growth is definitely a big No No in our household.) Will continue to buy and recommend this product!",
                "logo": "https://images-na.ssl-images-amazon.com/images/S/amazon-avatars-global/default._CR0,0,1024,1024_SX48_.png",
                "sku_name": "Pattern Name: 100 Count (Most Popular!)",
                "star": "5.0",
                "time": "Reviewed in the United States on October 13, 2024",
                "title": "As expected and MORE.",
                "user": "Edzy"
            }
        ],
        "page": "1",
        "page_count": 10,
        "page_size": 10,
        "real_total_results": "4,803",
        "total_results": "4,803"
    },
    "secache": "a8505152638f34d5e152dd5930d1d766",
    "secache_time": 1729154700,
    "secache_date": "2024-10-17 16:45:00",
    "translate_status": "",
    "translate_time": 0,
    "language": {
        "default_lang": "cn",
        "current_lang": "cn"
    },
    "error": "",
    "reason": "",
    "error_code": "0000",
    "cache": 0,
    "api_info": "today:16 max:50 all[23=16+6+1];expires:2024-10-19",
    "execution_time": "1.39",
    "server_time": "Beijing/2024-10-17 16:45:00",
    "client_ip": "106.6.32.135",
    "call_args": {
        "num_iid": "B07PBXXNCY",
        "page": 1
    },
    "api_type": "amazon",
    "translate_language": "zh-CN",
    "translate_engine": "baidu",
    "server_memory": "3.26MB",
    "request_id": "gw-1.6710ce8b5f82d",
    "last_id": "3615487822"
}
异常示例
{
  "error": "item-not-found",
  "reason": "没找到",
  "error_code": "2000",
  "success": 0,
  "cache": 0,
  "api_info": "today:0 max:10000",
  "execution_time": 0.081,
  "server_time": "Beijing/2023-12-15 17:44:00",
  "call_args": [],
  "api_type": "amazon",
  "request_id": "1ee0ffc041242"}
相关资料
错误码解释
状态代码(error_code) 状态信息 详细描述 是否收费
0000success接口调用成功并返回相关数据
2000Search success but no result接口访问成功,但是搜索没有结果
4000Server internal error服务器内部错误
4001Network error网络错误
4002Target server error目标服务器错误
4003Param error用户输入参数错误忽略
4004Account not found用户帐号不存在忽略
4005Invalid authentication credentials授权失败忽略
4006API stopped您的当前API已停用忽略
4007Account stopped您的账户已停用忽略
4008API rate limit exceeded并发已达上限忽略
4009API maintenanceAPI维护中忽略
4010API not found with these valuesAPI不存在忽略
4012Please add api first请先添加api忽略
4013Number of calls exceeded调用次数超限忽略
4014Missing url param参数缺失忽略
4015Wrong pageToken参数pageToken有误忽略
4016Insufficient balance余额不足忽略
4017timeout error请求超时
5000unknown error未知错误
API 工具
如何获得此API
立即开通 有疑问联系客服QQ:QQ:271449542271449542(微信同号)