Skip to main content
POST
/
api
/
trendyol
/
products
/
reviews
/trendyol/products/reviews
curl --request POST \
  --url https://api.anysite.io/api/trendyol/products/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@trendyol_product_review",
    "rating": 123,
    "text": "<string>",
    "author": "<string>",
    "created_at": 123,
    "helpful_count": 123,
    "language": "<string>",
    "is_trusted": true,
    "seller": {
      "id": "<string>",
      "@type": "@trendyol_review_seller",
      "name": "<string>"
    },
    "images": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

Trendyol product contentId or a product URL containing it

Minimum string length: 1
Examples:

"689227641"

"https://www.trendyol.com/apple/yenilenmis-iphone-12-64-gb-beyaz-cep-telefonu-12-ay-garantili-a-kalite-p-689227641"

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:@trendyol_product_review
rating
integer | null
text
string | null
author
string | null
created_at
integer | null
helpful_count
integer | null
language
string | null
is_trusted
boolean | null
seller
TrendyolReviewSeller · object
images
string[]