Skip to main content
POST
/
api
/
street11
/
products
/street11/products
curl --request POST \
  --url https://api.anysite.io/api/street11/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@street11_product",
    "name": "<string>",
    "brand": "<string>",
    "image": "<string>",
    "price": 123,
    "list_price": 123,
    "discount_percent": 123,
    "discount_amount": 123,
    "currency": "<string>",
    "is_in_stock": true,
    "is_on_sale": true,
    "is_adult": true,
    "rating": 123,
    "review_count": 123,
    "image_count": 123,
    "delivery_fee": 123,
    "category": "<string>",
    "breadcrumbs": [],
    "category_id": "<string>",
    "catalog_no": "<string>",
    "seller": {
      "@type": "@street11_product_seller",
      "store_no": "<string>",
      "name": "<string>",
      "url": "<string>",
      "satisfaction_rate": 123,
      "response_rate": 123,
      "sales_grade": 123
    }
  }
]

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"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
url
string
required
@type
string
default:@street11_product
name
string | null
brand
string | null
image
string | null
price
number | null
list_price
number | null
discount_percent
number | null
discount_amount
number | null
currency
string | null
is_in_stock
boolean | null
is_on_sale
boolean | null
is_adult
boolean | null
rating
number | null
review_count
integer | null
image_count
integer | null
delivery_fee
number | null
category
string | null
breadcrumbs
string[]
category_id
string | null
catalog_no
string | null
seller
Street11ProductSeller · object