Skip to main content
POST
/
api
/
street11
/
products
/
search
/street11/products/search
curl --request POST \
  --url https://api.anysite.io/api/street11/products/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 2,
  "timeout": 300,
  "sort": "ranking",
  "price_min": 1,
  "price_max": 1,
  "brand": "<string>",
  "seller": "<string>",
  "category": "<string>",
  "attribute": "41614_12723"
}
'
[
  {
    "id": "<string>",
    "@type": "@street11_search_product",
    "name": "<string>",
    "url": "<string>",
    "image": "<string>",
    "price": 123,
    "list_price": 123,
    "discount_percent": 123,
    "rating": 123,
    "review_count": 123,
    "brand": "<string>",
    "seller_id": "<string>",
    "seller_name": "<string>",
    "seller_url": "<string>",
    "catalog_no": "<string>",
    "price_compare_count": 123,
    "delivery": "<string>",
    "discount_text": "<string>",
    "recommendation": "<string>",
    "is_official": true,
    "is_lowest_price": true,
    "is_sold_out": true
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
keyword
string
required

Search keyword

Minimum string length: 1
Example:

"노트북"

count
integer
required

Max number of products 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:ranking

Result ordering

Available options:
ranking,
popular,
price_low,
price_high,
sales,
most_reviews,
newest
price_min
integer | null

Minimum price in KRW

Required range: x >= 0
price_max
integer | null

Maximum price in KRW

Required range: x >= 0
brand
string | null

Brand id (brandCd) to filter by

seller
string | null

Seller number (sellerNos) to filter by

category
string | null

Display category id (searchCategoryLarge) to filter by

product_type
enum<string> | null

Product type filter

Available options:
global_direct,
global_direct_except,
used,
refurbished,
deal,
rental,
displayed,
returned
benefit
enum<string> | null

Discount/points benefit filter

Available options:
hope_shopping,
pay11_point
delivery
enum<string> | null

Delivery benefit filter

Available options:
free_delivery,
safety_install,
free_gift_wrapping
attribute
string | null

Category attribute facet, format facetCode_valueCode

Example:

"41614_12723"

Response

Successful Response

id
string
required
@type
string
default:@street11_search_product
name
string | null
url
string | null
image
string | null
price
number | null
list_price
number | null
discount_percent
number | null
rating
number | null
review_count
integer | null
brand
string | null
seller_id
string | null
seller_name
string | null
seller_url
string | null
catalog_no
string | null
price_compare_count
integer | null
delivery
string | null
discount_text
string | null
recommendation
string | null
is_official
boolean | null
is_lowest_price
boolean | null
is_sold_out
boolean | null