Skip to main content
POST
/
api
/
blibli
/
products
/blibli/products
curl --request POST \
  --url https://api.anysite.io/api/blibli/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "item_sku": "<string>",
    "url": "<string>",
    "@type": "@blibli_product",
    "name": "<string>",
    "brand": "<string>",
    "brand_url": "<string>",
    "price": 123,
    "list_price": 123,
    "discount": 123,
    "currency": "IDR",
    "image": "<string>",
    "images": [],
    "rating": 123,
    "review_count": 123,
    "sold_count": 123,
    "seen_count": 123,
    "stock": 123,
    "ean": "<string>",
    "is_preorder": true,
    "warranty": "<string>",
    "description": "<string>",
    "specifications": [],
    "breadcrumbs": [],
    "categories": [],
    "variant_options": [],
    "seller": {
      "id": "<string>",
      "@type": "@blibli_product_seller",
      "name": "<string>",
      "level": "<string>",
      "rating": 123,
      "review_count": 123,
      "badge": "<string>",
      "is_official": true,
      "location": "<string>",
      "image": "<string>",
      "url": "<string>"
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

Blibli product SKU (itemSku or productSku) or a product URL containing it

Minimum string length: 1
Examples:

"SAO-60034-02759-00004"

"https://www.blibli.com/p/samsung-galaxy-a07/is--SAO-60034-02759-00004"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
item_sku
string
required
url
string
required
@type
string
default:@blibli_product
name
string | null
brand
string | null
brand_url
string | null
price
number | null
list_price
number | null
discount
integer | null
currency
string
default:IDR
image
string | null
images
string[]
rating
number | null
review_count
integer | null
sold_count
integer | null
seen_count
integer | null
stock
integer | null
ean
string | null
is_preorder
boolean | null
warranty
string | null
description
string | null
specifications
BlibliProductSpecification · object[]
breadcrumbs
string[]
categories
BlibliProductCategory · object[]
variant_options
BlibliProductVariantOption · object[]
seller
BlibliProductSeller · object