Skip to main content
POST
/
api
/
street11
/
products
/
questions
/street11/products/questions
curl --request POST \
  --url https://api.anysite.io/api/street11/products/questions \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@street11_question",
    "type": "<string>",
    "question": "<string>",
    "author": "<string>",
    "created_at": "<string>",
    "answer": "<string>",
    "answered_at": "<string>",
    "is_answered": 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 questions 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:@street11_question
type
string | null
question
string | null
author
string | null
created_at
string | null
answer
string | null
answered_at
string | null
is_answered
boolean | null