Endpoint Playground
Test Crawlora's Lazada Category Product Listing 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/category-products?country=id&category=<category>&sort=popularity" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| country | string | No | id | Lazada country storefront. Defaults to id. |
| category | string | Yes | Lazada category path slug, e.g. \ | |
| brand | string | No | Optional brand path slug to filter within the category. | |
| page | integer | No | Result page, 1-indexed. Defaults to 1. | |
| sort | string | No | popularity | Sort order. Defaults to popularity. |
{
"code": 200,
"msg": "OK",
"data": {
"region": "PH",
"category": "shop-karaoke-systems",
"sort": "popularity",
"page": 1,
"page_size": 40,
"total_results": 2400,
"items": [
{
"item_id": 15396167084,
"title": "Digilab Original K12 Bluetooth Portable Karaoke Speaker",
"url": "https://www.lazada.com.ph/products/pdp-i15396167084.html",
"image": "https://ph-live-01.slatic.net/p/example.png",
"price": 159,
"discount": "77% Off",
"rating": 5,
"reviews": 3,
"location": "Benguet",
"currency": "PHP"
}
],
"source_url": "https://www.lazada.com.ph/shop-karaoke-systems/?ajax=true&page=1",
"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 listing for one category, optionally filtered to one brand within it. Product cards include item ids, canonical product URLs, images, prices, ratings, and review counts, with pagination and sort. The category (and optional brand) value is the raw Lazada path slug, not a display name -- use the categories endpoint's own returned URLs to discover a category's slug.
{
"code": 200,
"msg": "OK",
"data": {
"region": "PH",
"category": "shop-karaoke-systems",
"sort": "popularity",
"page": 1,
"page_size": 40,
"total_results": 2400,
"items": [
{
"item_id": 15396167084,
"title": "Digilab Original K12 Bluetooth Portable Karaoke Speaker",
"url": "https://www.lazada.com.ph/products/pdp-i15396167084.html",
"image": "https://ph-live-01.slatic.net/p/example.png",
"price": 159,
"discount": "77% Off",
"rating": 5,
"reviews": 3,
"location": "Benguet",
"currency": "PHP"
}
],
"source_url": "https://www.lazada.com.ph/shop-karaoke-systems/?ajax=true&page=1",
"fetched_at": "2026-09-02T04:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/lazada/category-products?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"