Daraz APIdaraz.com ↗
Search for products on Daraz Pakistan and discover current flash sale deals and pricing information in real-time. Get detailed product information including prices, availability, and offers from Pakistan's largest e-commerce platform all in one place.
curl -X GET 'https://api.parse.bot/scraper/b33591e0-a186-4631-87ec-13e7feebb281/search_products?sort=popularity&query=laptop' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for products on Daraz Pakistan by keyword. Returns paginated results with pricing, discount, rating, seller, and stock information. Supports sorting by popularity, price ascending, or price descending. Each page returns up to 40 items.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. Each page returns up to 40 results. |
| sort | string | Sort order for results. Omitting defaults to popularity (best match). |
| queryrequired | string | Search keyword or phrase (e.g. 'laptop', 'samsung phone', 'shoes'). |
{
"type": "object",
"fields": {
"page": "current page number",
"has_more": "boolean indicating if more pages are available",
"products": "array of product objects with item_id, name, price, discount, rating, seller, etc.",
"page_size": "number of items per page (40)",
"total_results": "total number of matching products"
},
"sample": {
"data": {
"page": 1,
"has_more": true,
"products": [
{
"name": "Dell Chromebook 3120 P22T 4GB RAM 16GB Storage Compact Laptop",
"image": "https://static-01.daraz.pk/p/02a3fe65f98ef0ac73ab6972b563ebbf.png",
"price": "12500",
"sku_id": "2088376213",
"item_id": "435016024",
"discount": "14% Off",
"in_stock": true,
"item_url": "//www.daraz.pk/products/dell-chromebook-3120-...-i435016024.html",
"location": "Punjab",
"brand_name": "No Brand",
"seller_name": "MyTechStorePK",
"rating_score": "5.0",
"review_count": "1",
"price_display": "Rs. 12,500",
"original_price": "14500",
"original_price_display": ""
}
],
"page_size": 40,
"total_results": 4080
},
"status": "success"
}
}About the Daraz API
The Daraz API on Parse exposes 3 endpoints for the publicly available data on daraz.com. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.