Endpoint Playground
Test Crawlora's Lazada Indonesia Category Directory 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/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"region": "ID",
"groups": [
{
"name": "Elektronik",
"categories": [
{
"name": "Laptop",
"url": "https://www.lazada.co.id/shop-beli-laptop/",
"children": [
{
"name": "Laptop Consumer",
"url": "https://www.lazada.co.id/jual-laptop-umum/"
}
]
}
]
}
],
"source_url": "https://pages.lazada.co.id/wow/i/id/LandingPage/lazmall?wh_weex=true",
"fetched_at": "2026-08-28T04: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 Lazada Indonesia's public category directory from the server-rendered LazMall navigation menu. The response includes top-level groups, categories, and subcategory links; it does not include product listings.
{
"code": 200,
"msg": "OK",
"data": {
"region": "ID",
"groups": [
{
"name": "Elektronik",
"categories": [
{
"name": "Laptop",
"url": "https://www.lazada.co.id/shop-beli-laptop/",
"children": [
{
"name": "Laptop Consumer",
"url": "https://www.lazada.co.id/jual-laptop-umum/"
}
]
}
]
}
],
"source_url": "https://pages.lazada.co.id/wow/i/id/LandingPage/lazmall?wh_weex=true",
"fetched_at": "2026-08-28T04:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/lazada/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"