Endpoint Playground
Test Crawlora's Lazada Product Detail API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/lazada/product?country=id&item_id=<item_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| country | string | No | id | Lazada country storefront. Defaults to id. |
| item_id | integer | Yes | Lazada item id. | |
| sku_id | integer | No | Optional Lazada sku id, for a specific variant. |
{
"code": 200,
"msg": "OK",
"data": {
"item_id": 159992555,
"sku_id": 181803572,
"seller_id": 100161156,
"region": "ID",
"title": "PANTENE Shampoo Hair Fall Control 990ml",
"url": "https://www.lazada.co.id/products/pantene-shampoo-hair-fall-control-990ml-i159992555-s181803572.html",
"brand": "Pantene",
"brand_url": "https://www.lazada.co.id/pantene/",
"price": 190500,
"currency": "IDR",
"category": [
"Kecantikan",
"Perawatan Diri",
"Perawatan Rambut"
],
"images": [
"https://id-test-11.slatic.net/p/example.png"
],
"description": "<article><p>...</p></article>",
"highlights": "<article><ul><li>...</li></ul></article>",
"variants": [
{
"name": "Volume",
"values": [
"990 ml"
]
}
],
"source_url": "https://www.lazada.co.id/products/pdp-i159992555-s181803572.html",
"fetched_at": "2026-09-02T04:00:00Z"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns one Lazada country storefront's product-detail page: title, brand, full description, image gallery, category breadcrumb, and selectable variant properties. item_id (and, for a specific variant, sku_id) are the same ids the search, category-products, and home endpoints already return as item_id. Price is best-effort, read from the page's own display-tracking data rather than a dedicated pricing field; rating and review count are not available on this endpoint because Lazada fetches them client-side after the initial page load.
{
"code": 200,
"msg": "OK",
"data": {
"item_id": 159992555,
"sku_id": 181803572,
"seller_id": 100161156,
"region": "ID",
"title": "PANTENE Shampoo Hair Fall Control 990ml",
"url": "https://www.lazada.co.id/products/pantene-shampoo-hair-fall-control-990ml-i159992555-s181803572.html",
"brand": "Pantene",
"brand_url": "https://www.lazada.co.id/pantene/",
"price": 190500,
"currency": "IDR",
"category": [
"Kecantikan",
"Perawatan Diri",
"Perawatan Rambut"
],
"images": [
"https://id-test-11.slatic.net/p/example.png"
],
"description": "<article><p>...</p></article>",
"highlights": "<article><ul><li>...</li></ul></article>",
"variants": [
{
"name": "Volume",
"values": [
"990 ml"
]
}
],
"source_url": "https://www.lazada.co.id/products/pdp-i159992555-s181803572.html",
"fetched_at": "2026-09-02T04:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/lazada/product?item_id=<item_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"