Skip to main content
POST
/
api
/
yahoo_shopping
/
products
/
reviews
/yahoo_shopping/products/reviews
curl --request POST \
  --url https://api.anysite.io/api/yahoo_shopping/products/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "item": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@yahoo_shopping_product_review",
    "rating": 123,
    "title": "<string>",
    "text": "<string>",
    "author": "<string>",
    "posted_at": 123,
    "helpful_count": 123,
    "options": {},
    "sub_ratings": [],
    "images": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
item
string
required

Yahoo! Shopping product as store_alias/item_code or a full product URL

Minimum string length: 1
Examples:

"mobilestation/friphone17e256gbm"

"https://store.shopping.yahoo.co.jp/mobilestation/friphone17e256gbm.html"

count
integer
required

Max number of reviews to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@yahoo_shopping_product_review
rating
integer | null
title
string | null
text
string | null
author
string | null
posted_at
integer | null
helpful_count
integer | null
options
Options · object
sub_ratings
YahooShoppingProductReviewSubRating · object[]
images
string[]