コンテンツにスキップ
ログイン サインアップ

Amazonセラーフィードバック

Amazon Seller Feedbackは、指定したAmazonセラーに対して寄せられた顧客レビューを返します。各ページは最大5件のレコードを返すため、pageパラメータとpagination.has_next_pageフラグを使用して反復処理を行ってください。

GET https://ecom.shifter.io/v1?engine=amazon&api_key=YOUR_API_KEY&type=seller_feedback
パラメータ必須説明
api_keystringyesあなたのSERP APIキー(Amazonと共通)。
enginestringyesamazonを指定する必要があります。
typestringyesseller_feedbackを指定する必要があります。
seller_idstringyesAmazonセラーID(例:AAZRLVTNON75Z)。
domainstringnoマーケットプレイスのドメイン、デフォルトはamazon.com
devicedesktop | mobilenoシミュレートするデバイス。
pageintegerno結果のページ番号。pagination.has_next_pageと組み合わせて使用します。
Terminal window
curl "https://ecom.shifter.io/v1?engine=amazon&api_key=YOUR_API_KEY&type=seller_feedback&seller_id=AAZRLVTNON75Z"
{
"search_parameters": {
"engine": "amazon",
"amazon_domain": "amazon.com",
"type": "seller_feedback",
"seller_id": "AAZRLVTNON75Z"
},
"seller_feedback": [
{
"rater": "Jorge balarezo",
"rating": 5,
"has_response": false,
"body": "Tiene un perfume muy agradable, siempre lo uso lo recomiendo.",
"date": { "raw": "July 24, 2023", "utc": "2023-07-24T04:00:00.000Z" },
"position": 1
},
{
"rater": "Sarah M.",
"rating": 5,
"body": "Great service",
"date": { "raw": "July 24, 2023", "utc": "2023-07-24T04:00:00.000Z" },
"position": 2
},
{
"rater": "Chad H.",
"rating": 1,
"body": "Product was different than advertised.",
"date": { "raw": "July 24, 2023", "utc": "2023-07-24T04:00:00.000Z" },
"position": 4
}
],
"pagination": { "current_page": 1, "has_next_page": true, "next_page": 2 }
}