Skip to main content
POST
/
api
/
blibli
/
sellers
/
products
/blibli/sellers/products
curl --request POST \
  --url https://api.anysite.io/api/blibli/sellers/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "seller": "<string>",
  "count": 2,
  "timeout": 300,
  "sort": "relevance"
}
'
[
  {
    "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
seller
string
required

Blibli merchant code or a merchant page URL containing it

Minimum string length: 1
Examples:

"SAO-60034"

"https://www.blibli.com/merchant/samsung-flagship-store/SAO-60034"

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

Result ordering

Available options:
relevance,
best_selling,
cheapest,
expensive,
popular,
newest,
nearby

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