Skip to main content
POST
/
api
/
hepsiburada
/
products
/
reviews
/hepsiburada/products/reviews
curl --request POST \
  --url https://api.anysite.io/api/hepsiburada/products/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300,
  "sort": "MOSTHELPFUL"
}
'
[
  {
    "id": "<string>",
    "@type": "@hepsiburada_product_review",
    "rating": 123,
    "text": "<string>",
    "author": "<string>",
    "created_at": "<string>",
    "is_purchase_verified": true,
    "helpful_count": 123,
    "seller_name": "<string>",
    "keywords": [],
    "feature_ratings": [],
    "images": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

Hepsiburada product SKU, product group id or a product URL

Minimum string length: 1
Examples:

"HBCV00004X9ZCH"

"HBC00004X9ZCG"

"https://www.hepsiburada.com/apple-iphone-15-128-gb-p-HBCV00004X9ZCH"

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
sort
enum<string>
default:MOSTHELPFUL

Review ordering

Available options:
MOSTHELPFUL,
MOSTRECENT

Response

Successful Response

id
string
required
@type
string
default:@hepsiburada_product_review
rating
integer | null
text
string | null
author
string | null
created_at
string | null
is_purchase_verified
boolean | null
helpful_count
integer | null
seller_name
string | null
keywords
string[]
feature_ratings
HepsiburadaReviewFeature · object[]
images
string[]