Endpoint Playground
Test Crawlora's Lazada Catalog Search 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/search?country=id&q=<q>&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. |
| q | string | Yes | Free-text search query. | |
| 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",
"query": "karaoke",
"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/catalog/?ajax=true&page=1&q=karaoke",
"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 free-text catalog search results: product cards with item ids, canonical product URLs, images, prices in the storefront's own currency, ratings, and review counts, with pagination and sort. Lazada's own search always substitutes generic or trending items rather than returning a genuinely empty result set, so an empty items list or a low total_results is not by itself a reliable "no matches" signal.
{
"code": 200,
"msg": "OK",
"data": {
"region": "PH",
"query": "karaoke",
"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/catalog/?ajax=true&page=1&q=karaoke",
"fetched_at": "2026-09-02T04:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/lazada/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"