Skip to main content
POST
/
api
/
blibli
/
products
/
search
/blibli/products/search
curl --request POST \
  --url https://api.anysite.io/api/blibli/products/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "keyword": "iphone",
  "sort": "relevance",
  "category": "<string>",
  "category_level": 2,
  "brand": "<string>",
  "price_min": 1,
  "price_max": 1,
  "rating": "any",
  "location": "<string>",
  "seller_type": "<string>"
}
'
[
  {
    "id": "<string>",
    "sku": "<string>",
    "url": "<string>",
    "@type": "@blibli_product_card",
    "name": "<string>",
    "brand": "<string>",
    "price": 123,
    "list_price": 123,
    "discount_percentage": 123,
    "is_price_range": true,
    "currency": "IDR",
    "image": "<string>",
    "images": [],
    "rating": 123,
    "review_count": 123,
    "seller_id": "<string>",
    "seller_name": "<string>",
    "is_official_merchant": true,
    "is_official_brand": true,
    "merchant_badge": "<string>",
    "location": "<string>",
    "location_count": 123,
    "sold_count": 123,
    "item_sku": "<string>",
    "variant": "<string>",
    "category": "<string>",
    "category_hierarchy": [],
    "is_buyable": true,
    "is_preorder": true,
    "delivery_estimate": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
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
keyword
string | null

Search keyword

Minimum string length: 1
Example:

"iphone"

sort
enum<string>
default:relevance

Result ordering

Available options:
relevance,
best_selling,
cheapest,
expensive,
popular,
newest,
nearby
category
string | null

Category code to browse (e.g. CA-1000001); from the categories endpoint

category_level
integer | null

Depth of the category code (1 = root … 3 = leaf)

Required range: 1 <= x <= 3
brand
string | null

Brand name filter

price_min
integer | null

Minimum price in IDR

Required range: x >= 0
price_max
integer | null

Maximum price in IDR

Required range: x >= 0
rating
enum<string>
default:any

Minimum average rating bucket

Available options:
any,
4,
3,
2,
1
location
string | null

Store location filter (province or city name)

seller_type
string | null

Seller type filter (e.g. official store)

Response

Successful Response

id
string
required
sku
string
required
url
string
required
@type
string
default:@blibli_product_card
name
string | null
brand
string | null
price
number | null
list_price
number | null
discount_percentage
integer | null
is_price_range
boolean | null
currency
string
default:IDR
image
string | null
images
string[]
rating
number | null
review_count
integer | null
seller_id
string | null
seller_name
string | null
is_official_merchant
boolean | null
is_official_brand
boolean | null
merchant_badge
string | null
location
string | null
location_count
integer | null
sold_count
integer | null
item_sku
string | null
variant
string | null
category
string | null
category_hierarchy
string[]
is_buyable
boolean | null
is_preorder
boolean | null
delivery_estimate
string | null