Skip to main content
POST
/
api
/
street11
/
products
/
reviews
/street11/products/reviews
curl --request POST \
  --url https://api.anysite.io/api/street11/products/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300,
  "sort": "recommended",
  "rating": 3
}
'
[
  {
    "id": "<string>",
    "@type": "@street11_review",
    "rating": 123,
    "author": "<string>",
    "text": "<string>",
    "images": [],
    "has_media": true
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

11Street product number (prdNo) or a product URL containing it

Minimum string length: 1
Examples:

"5917614041"

"https://www.11st.co.kr/products/5917614041"

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

Review ordering

Available options:
recommended,
newest
rating
integer | null

Filter reviews by star rating (1-5)

Required range: 1 <= x <= 5

Response

Successful Response

id
string
required
@type
string
default:@street11_review
rating
integer | null
author
string | null
text
string | null
images
string[]
has_media
boolean | null