Skip to main content
POST
/
api
/
yandexmarket
/
products
/
reviews
/yandexmarket/products/reviews
curl --request POST \
  --url https://api.anysite.io/api/yandexmarket/products/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@yandex_market_review",
    "author": "<string>",
    "author_id": "<string>",
    "author_avatar": "<string>",
    "rating": 123,
    "text": "<string>",
    "pro": "<string>",
    "contra": "<string>",
    "created_at": "<string>",
    "images": [],
    "useful_count": 123,
    "useless_count": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

Yandex.Market product id or a full product URL

Minimum string length: 1
Examples:

"1082757784"

"https://market.yandex.ru/product--x/1082757784"

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:@yandex_market_review
author
string | null
author_id
string | null
author_avatar
string | null
rating
integer | null
text
string | null
pro
string | null
contra
string | null
created_at
string | null
images
string[]
useful_count
integer | null
useless_count
integer | null