Skip to main content
POST
/
api
/
n11
/
products
/
reviews
/n11/products/reviews
curl --request POST \
  --url https://api.anysite.io/api/n11/products/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300,
  "sort": "RECENT",
  "rating": 3,
  "topic": "<string>"
}
'
[
  {
    "id": "<string>",
    "@type": "@n11_product_review",
    "rating": 123,
    "text": "<string>",
    "author": "<string>",
    "created_at": 123,
    "created_date": "<string>",
    "helpful_count": 123,
    "useless_count": 123,
    "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

N11 product id (data-prod-id) or a product URL

Minimum string length: 1
Examples:

"726304379"

"https://www.n11.com/urun/apple-iphone-15-128-gb-apple-turkiye-garantili-43821353"

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:RECENT

Review sort order

Available options:
RECENT,
HELPFUL,
FAVORABLE,
CRITICAL
rating
integer | null

Filter reviews by star rating

Required range: 1 <= x <= 5
topic
string | null

Filter reviews by topic tag

Response

Successful Response

id
string
required
@type
string
default:@n11_product_review
rating
integer | null
text
string | null
author
string | null
created_at
integer | null
created_date
string | null
helpful_count
integer | null
useless_count
integer | null
seller_name
string | null
images
string[]