Discover/Com API
live

Com APIdaraz.com.bd

Search Daraz Bangladesh products, retrieve full product details, browse categories, and surface best sellers via a structured JSON API.

This API takes change requests — .
Endpoint health
verified 5h ago
search_products
get_product_details
browse_category
get_best_selling_product
get_category_list
4/5 passing latest checkself-healing
Endpoints
5
Updated
28d ago

What is the Com API?

This API covers 5 endpoints for querying Daraz Bangladesh (daraz.com.bd), returning product listings, detailed product pages, category trees, and best-seller rankings. The search_products endpoint accepts a keyword query with optional sorting by popularity, orders, or price, and returns paginated summaries including pricing, discount, seller info, ratings, and review counts across the full Daraz Bangladesh catalog.

Try it
Page number for pagination.
Sort order for results.
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.
Call it over HTTPgrab 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'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace daraz-com-bd-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Daraz Bangladesh SDK — search products, browse categories, get details."""
from parse_apis.daraz_bangladesh_api import Daraz, Sort, ProductNotFound

client = Daraz()

# Search for laptops sorted by price ascending, capped at 5 results
for product in client.productsummaries.search(query="laptop", sort=Sort.PRICE_ASC, limit=5):
    print(product.name, product.price, product.seller_name)

# Get best-selling phones
top_phone = client.productsummaries.best_selling(query="phone", limit=1).first()
if top_phone:
    print(top_phone.name, top_phone.price, top_phone.sold_count)

# Navigate from summary to full product details
if top_phone:
    try:
        detail = top_phone.details()
        print(detail.title, detail.brand, detail.category, detail.in_stock)
    except ProductNotFound as exc:
        print(f"Product gone: {exc}")

# Browse a category using constructible Category
for item in client.category("toys-games").browse(sort=Sort.POPULARITY, limit=3):
    print(item.name, item.price, item.discount)

# List all top-level categories
for cat in client.categories.list(limit=5):
    print(cat.name, cat.slug)

print("exercised: productsummaries.search / productsummaries.best_selling / details / category.browse / categories.list")
All endpoints · 5 totalmissing one? ·

Full-text search over Daraz Bangladesh product listings. Returns a paginated list of product summaries matching the keyword query. Supports sorting by popularity, number of orders, or price. Each result includes pricing, seller info, and a product URL suitable for get_product_details.

Input
ParamTypeDescription
pageintegerPage number for pagination.
sortstringSort order for results.
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 summary 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 echoed back",
    "total_items": "total number of matching products (string)"
  },
  "sample": {
    "data": {
      "page": 1,
      "sort": "popularity",
      "items": [
        {
          "url": "https://www.daraz.com.bd/products/asus-tuf-gaming-a16-i1572542441.html",
          "name": "Asus TUF Gaming A16 FA607NUG",
          "image": "https://static-01.daraz.com.bd/p/da91b0eaf490057999c08117f718d6da.png",
          "price": "155500",
          "rating": "",
          "sku_id": "12630610745",
          "item_id": "1572542441",
          "discount": "3% Off",
          "location": "Chattogram",
          "sold_count": null,
          "seller_name": "MS Royal Select",
          "review_count": "",
          "original_price": "160000"
        }
      ],
      "query": "laptop",
      "total_items": "4080"
    },
    "status": "success"
  }
}

About the Com API

Search and Browse

The search_products endpoint accepts a query string (e.g. 'laptop', 'shoes') and returns a paginated list of matching products. Each item in the items array includes name, item_id, sku_id, price, original_price, discount, rating, review_count, and sold_count. The optional sort parameter controls ordering — use 'popularity', 'orders', or 'price' — and the page parameter steps through results. The total_items field in the response tells you the full match count.

Product Details and Categories

get_product_details takes a full Daraz product page URL and returns a richer field set: title, brand, category path, price, discount, images array, in_stock boolean, sku, and item_id. The product_url input can be sourced directly from search results. get_category_list returns all top-level category name and slug pairs with no inputs required. Those slugs feed into browse_category, which lists products within a specific category and supports the same page and sort parameters as search.

Best Sellers

get_best_selling_product accepts a query keyword and always returns the first page of results sorted by order count. It returns the same items structure as search_productsname, item_id, sku_id, price, original_price, discount, rating, review_count, sold_count — making it a direct shortcut for identifying top-selling items in any product vertical without manually setting sort=orders.

Limitations to Know

browse_category depends on slug support at the category level; some slugs returned by get_category_list may not return product data if the underlying category page does not support it. Known working slugs include womens-fashion and toys-games. Product detail fields like highlights and description are available in the response but completeness varies by listing.

Reliability & maintenanceVerified

The Com API is a managed, monitored endpoint for daraz.com.bd — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when daraz.com.bd changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official daraz.com.bd API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
5h ago
Latest check
4/5 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track price and discount changes on specific Daraz Bangladesh products using get_product_details over time.
  • Build a best-seller dashboard for any product category by querying get_best_selling_product with relevant keywords.
  • Compare price and sold_count across competing listings returned by search_products for a given keyword.
  • Populate a product catalog or affiliate feed using browse_category to walk top-level categories.
  • Monitor in_stock status for high-demand products by polling get_product_details on specific URLs.
  • Identify which brands dominate a search result page by aggregating the brand field across search_products results.
  • Build a category navigation index using get_category_list slugs paired with browse_category product counts.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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?+
Yes. Daraz operates the Daraz Open Platform (also called the Lazada Open Platform API in some regions), documented at open.daraz.com.bd. That API is seller-facing and requires a registered seller account and app credentials. It covers order management, inventory, and fulfillment — not unauthenticated product search or browsing.
What does `get_product_details` return beyond what search gives you?+
search_products returns summary fields: name, price, discount, rating, review_count, and sold_count. get_product_details adds brand, category path, images array, in_stock boolean, sku, and item_id. It requires a full product page URL as input, which you can take directly from search result items.
Does the API return customer reviews or review text?+
Not currently. The API returns review_count and rating scores in search and product summary responses, but individual review text, reviewer names, and review dates are not exposed. You can fork this API on Parse and revise it to add a reviews endpoint targeting Daraz product review pages.
Are all category slugs from `get_category_list` guaranteed to work with `browse_category`?+
No. Some slugs returned by get_category_list may produce an upstream error when passed to browse_category if that category page does not expose structured product data. Slugs confirmed to work include womens-fashion and toys-games. Test slugs individually and handle error responses in your integration.
Does the API cover seller profiles or store-level data?+
Not currently. Product responses include a seller name field, but there are no endpoints for seller ratings, seller product listings, or store pages. You can fork this API on Parse and revise it to add a seller or store endpoint.
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.
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.
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.