Discover/daraz.com.bd API
live

daraz.com.bd APIdaraz.com.bd

Search products, retrieve product details, browse categories, and find best sellers on Daraz Bangladesh via a structured JSON API with 5 endpoints.

Endpoints
5
Updated
17d ago
Try it
Page number for pagination.
Sort order. Accepted values: popularity, orders, priceasc, pricedesc.
Search keyword (e.g. 'laptop', 'phone', 'shoes').
api.parse.bot/scraper/cdf90281-faa1-4811-ac8e-d85b75602758/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/cdf90281-faa1-4811-ac8e-d85b75602758/search_products?page=1&sort=popularity&query=laptop' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 5 totalclick to expand

Search for products by keyword on Daraz Bangladesh. Returns a paginated list of products with basic info including price, rating, and seller details.

Input
ParamTypeDescription
pageintegerPage number for pagination.
sortstringSort order. Accepted values: popularity, orders, priceasc, pricedesc.
queryrequiredstringSearch keyword (e.g. 'laptop', 'phone', 'shoes').
Response
{
  "type": "object",
  "fields": {
    "page": "current page number (integer)",
    "sort": "the sort order used",
    "items": "array of product objects with name, item_id, sku_id, price, original_price, discount, rating, review_count, sold_count, location, seller_name, image, url",
    "query": "the search query used",
    "total_items": "total number of matching products (string)"
  },
  "sample": {
    "data": {
      "page": 1,
      "sort": "popularity",
      "items": [
        {
          "url": "https://www.daraz.com.bd/products/dell-latitude-3190-2-in-1-laptop-10th-gen-n5030-116-hd-i570642888.html",
          "name": "Dell Latitude 3190 2-in-1 Laptop",
          "image": "https://static-01.daraz.com.bd/p/daa08a5840f98c830f093acb4eb501cd.jpg",
          "price": "18900",
          "rating": "5.0",
          "sku_id": "2622346482",
          "item_id": "570642888",
          "discount": "3% Off",
          "location": "Dhaka",
          "sold_count": null,
          "seller_name": "TechFev",
          "review_count": "0",
          "original_price": "19500"
        }
      ],
      "query": "laptop",
      "total_items": "4080"
    },
    "status": "success"
  }
}

About the daraz.com.bd API

The Daraz Bangladesh API gives developers structured access to daraz.com.bd across 5 endpoints, covering product search, detailed product data, category listings, category browsing, and best-seller identification. The search_products endpoint returns paginated results with fields like price, original_price, discount, rating, review_count, sold_count, and seller location — all queryable by keyword and sortable by popularity, order volume, or price.

Endpoints and Data Coverage

The API covers five operations against daraz.com.bd. search_products accepts a required query string plus optional page and sort parameters (accepted sort values: popularity, orders, priceasc, pricedesc) and returns a paginated list with total_items, alongside per-product fields: item_id, sku_id, name, price, original_price, discount, rating, review_count, sold_count, and location. get_best_selling_product runs the same query but forces sort=orders, making it a direct shortcut for surfacing top-selling items without passing the sort parameter manually.

Product Details and Category Navigation

get_product_details takes a full Daraz product page URL and returns structured fields: title, brand, price, discount, sku, item_id, category (as a path string), images (array of URLs), in_stock (boolean), and the canonical url. get_category_list returns an array of top-level category objects — each with a name and slug — that feed directly into browse_category. Pass one of those slugs to browse_category to get a paginated product list with the same fields as search results. Note that not all slugs returned by get_category_list are guaranteed to work with browse_category; known working slugs include womens-fashion and toys-games.

Quirks and Limitations

The browse_category endpoint may return an upstream error for category slugs whose pages do not support the underlying data format — this is a source-side constraint, not a parameter error. total_items in both search and browse responses is typed as a string, not an integer, so cast it before arithmetic. Seller review text and individual review content are not exposed in any current response; only aggregate rating and review_count are available.

Common use cases
  • Track price and discount changes on specific Daraz Bangladesh products using get_product_details and the price / original_price fields.
  • Build a best-seller ranking tool for any product category by querying get_best_selling_product and sorting on sold_count.
  • Populate a product comparison page with title, brand, images, and in-stock status from get_product_details.
  • Enumerate available top-level categories with get_category_list and feed slugs into browse_category for category-level inventory snapshots.
  • Monitor seller location distribution across search results using the location field in search_products responses.
  • Identify discount depth across a keyword search by comparing price and original_price returned by search_products.
  • Surface trending products in specific niches by sorting search_products results by orders and reading review_count alongside sold_count.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Daraz have an official public developer API?+
Daraz operates a seller-facing API platform (Daraz Open Platform) available at open.daraz.com, but it is restricted to registered Daraz sellers and partners for order and inventory management. It does not provide open product search or catalog browsing for general developer use.
What does `get_product_details` return compared to `search_products`?+
search_products returns a lightweight summary per product: name, price, discount, rating, review_count, sold_count, and location. get_product_details returns richer data for a single product by URL: full title, brand, an images array, the category path, in_stock boolean, and SKU — fields that are not available in search results.
Does the API return individual customer reviews or review text?+
Not currently. The API exposes aggregate rating and review_count fields in search and browse responses, but individual review content, reviewer names, and review dates are not included in any endpoint. You can fork this API on Parse and revise it to add a review-fetching endpoint.
Are all category slugs from `get_category_list` usable with `browse_category`?+
Not all of them. get_category_list returns slugs for all top-level categories, but browse_category may return an upstream error for slugs whose category pages do not expose product data in the expected format. Known working slugs include womens-fashion and toys-games. If a slug fails, try an adjacent or more specific slug.
Does the API cover other Daraz country storefronts (Pakistan, Sri Lanka, etc.)?+
Not currently. All endpoints target daraz.com.bd (Bangladesh) specifically; prices, products, and categories reflect that storefront only. You can fork this API on Parse and revise it to point at another Daraz country domain.
Page content last updated . Spec covers 5 endpoints from daraz.com.bd.
Related APIs in EcommerceSee all →
daraz.pk API
Browse and extract product data from Daraz Pakistan (daraz.pk). Search products by keyword or category, retrieve full product details, explore the category tree, and list all products for a given seller.
daraz.com.np API
Search for products on Daraz Nepal and access detailed product information, homepage data, and current flash sale offerings all in one place. Get real-time product details, pricing, and promotional content to help you find exactly what you're looking for on Nepal's leading e-commerce platform.
lazada.co.th API
Search for products and browse categories on Lazada Thailand to find detailed information like prices, descriptions, and availability. Discover items by keyword or category to compare specifications and make informed purchasing decisions.
desertcart.com API
Search and browse products across Desertcart to access detailed information including specifications, images, pricing, and real-time availability. Explore product categories, subcategories, and variants to compare options and find exactly what you're looking for.
darty.com API
Search and browse electronics products from Darty.com, view detailed specifications and pricing information, and add items directly to your cart. Discover product details like features, availability, and technical specs to help you find exactly what you need.
jumia.com.gh API
Browse and search thousands of products from Jumia Ghana's catalog, view detailed product information, and explore items across different categories. Get real-time search suggestions and instantly access pricing, descriptions, and availability for any item on Ghana's leading e-commerce platform.
lazada.sg API
Search and browse products on Lazada Singapore with access to detailed product information, customer reviews, seller profiles, and category listings. Discover flash sale deals and explore what sellers are offering all in one place.
banggood.com API
Search Banggood products and retrieve detailed information including prices, specifications, and customer reviews to help you discover items and make informed purchasing decisions. Perfect for monitoring inventory, comparing products, and staying updated on what's available across Banggood's catalog.