Discover/Dokhoon Bahrain API
live

Dokhoon Bahrain APIdokhoonbahrain.com

Access Dokhoon Bahrain's perfume and incense catalog via API. Retrieve product names, prices, sold quantities, and categories with pagination support.

This API takes change requests — .
Endpoint health
verified 7h ago
list_categories
list_products
2/2 passing latest checkself-healing
Endpoints
2
Updated
8h ago

What is the Dokhoon Bahrain API?

The Dokhoon Bahrain API exposes 2 endpoints covering the full product catalog from dokhoonbahrain.com, a Bahraini perfume and incense retailer. The list_products endpoint returns up to 15 products per page with fields including name, category, price, sale price, currency, and sold quantity. The list_categories endpoint returns the complete category tree including sub-categories, with IDs that slot directly into product filtering.

This call costs1 credit / call— charged only on success
Try it
Page number for pagination.
Numeric category ID to filter products. Obtain from list_categories endpoint's id field.
api.parse.bot/scraper/4b8eddce-bf76-46ef-9dd9-f4fd90b689bc/<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/4b8eddce-bf76-46ef-9dd9-f4fd90b689bc/list_products?page=1&category_id=917890342' \
  -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 dokhoonbahrain-com-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: Dokhoon Bahrain SDK — browse categories then list products."""
from parse_apis.dokhoonbahrain_com_api import DokhoonBahrain, ParseError

client = DokhoonBahrain()

# List all categories and show their sub-categories.
for cat in client.categories.list(limit=5):
    subs = ", ".join(sc.name for sc in cat.sub_categories) or "(none)"
    print(f"{cat.name}: {subs}")

# Pick the first category and list its products filtered by category ID.
first_cat = client.categories.list(limit=1).first()
if first_cat is not None:
    for product in client.products.list(category_id=str(first_cat.id), limit=5):
        print(f"{product.name} — {product.price} {product.currency} (was {product.regular_price})")

# Browse all products without a filter, with error handling.
try:
    for product in client.products.list(limit=3):
        sold = product.sold_quantity if product.sold_quantity is not None else 0
        print(f"{product.name}: sold {sold}, {product.url}")
except ParseError as e:
    print(f"Request failed: {e}")

print("exercised: categories.list / products.list (filtered + unfiltered)")
All endpoints · 2 totalmissing one? ·

List products from the store with name, category, price, and sold quantity. Returns 15 products per page with cursor-based pagination. Optionally filter by category ID (obtainable from list_categories). When category_id is omitted, returns all products across all categories.

Input
ParamTypeDescription
pageintegerPage number for pagination.
category_idstringNumeric category ID to filter products. Obtain from list_categories endpoint's id field.
Response
{
  "type": "object",
  "fields": {
    "page": "current page number",
    "has_next": "boolean indicating if more pages are available",
    "products": "array of product objects with id, name, category, price, regular_price, sale_price, currency, sold_quantity, url"
  },
  "sample": {
    "data": {
      "page": 1,
      "has_next": true,
      "products": [
        {
          "id": "1234695112",
          "url": "https://dokhoonbahrain.com/en/royal-bahraini-incense-bouquet/p1234695112",
          "name": "Royal Bahraini Dukhoon Collection, each fragrance 100ml",
          "price": 499,
          "category": "Golden packages",
          "currency": "SAR",
          "sale_price": 499,
          "regular_price": 2786,
          "sold_quantity": 1516
        },
        {
          "id": "1710009252",
          "url": "https://dokhoonbahrain.com/en/%D8%A8%D8%AE%D9%88%D8%B1-%D8%B1%D8%B0%D8%A7%D8%B0-%D8%A7%D9%84%D8%B9%D9%88%D8%AF-%D8%A7%D9%84%D9%85%D9%84%D9%83%D9%8A/p1710009252",
          "name": "بخور رذاذ العود الملكي",
          "price": 70,
          "category": "incense",
          "currency": "SAR",
          "sale_price": 70,
          "regular_price": 140,
          "sold_quantity": 10
        }
      ]
    },
    "status": "success"
  }
}

About the Dokhoon Bahrain API

Endpoints and What They Return

The list_products endpoint returns paginated product listings, 15 per page, using cursor-based pagination controlled by the page integer parameter. Each product object includes id, name, category, price, regular_price, sale_price, currency, sold_quantity, and url. The has_next boolean in the response tells you whether additional pages exist, making it straightforward to walk the full catalog programmatically.

Filtering by Category

To filter products by category, first call list_categories, which returns a flat-and-nested structure: each category object carries an id, name, and a sub_categories array. Pass any id from that response as the category_id string parameter on list_products. When category_id is omitted, the endpoint returns products across all categories. Sub-category IDs work the same way as top-level ones.

Pricing and Sales Data

Each product exposes three price fields: price (the current effective price), regular_price (the standard undiscounted price), and sale_price (the promotional price when active). The currency field identifies the denomination. The sold_quantity field reflects sales volume per product, which can serve as a proxy for popularity ranking within any given category.

Reliability & maintenanceVerified

The Dokhoon Bahrain API is a managed, monitored endpoint for dokhoonbahrain.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when dokhoonbahrain.com 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 dokhoonbahrain.com 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
7h ago
Latest check
2/2 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 changes on perfume products by comparing regular_price and sale_price over time.
  • Build a popularity ranking of incense products using the sold_quantity field.
  • Sync Dokhoon Bahrain's current catalog into an internal product database using paginated list_products calls.
  • Map the full category hierarchy, including sub-categories, using list_categories for navigation or filtering UIs.
  • Identify discounted products by checking where sale_price differs from regular_price.
  • Filter products by specific category ID to power a category-scoped browsing or comparison tool.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Dokhoon Bahrain have an official developer API?+
Dokhoon Bahrain does not publish an official public developer API or documentation for external access to their catalog data.
What does the `list_categories` endpoint return, and how does it relate to product filtering?+
It returns all store categories as an array of objects, each with an id, name, and a sub_categories array. The id from any category or sub-category can be passed as category_id in list_products to filter results to that segment of the catalog.
Does the API return product images or detailed descriptions?+
Not currently. The API covers product name, category, pricing fields, sold quantity, and URL. You can fork this API on Parse and revise it to add image URLs or description fields if the source exposes them.
What is the page size for `list_products` and is it configurable?+
The endpoint returns exactly 15 products per page. The page size is fixed and cannot be changed via parameters. Use the page input to advance through results and the has_next boolean to detect when you have reached the last page.
Does the API expose stock availability or inventory levels?+
Not currently. The available fields are pricing, category, and sold quantity. Stock status or inventory counts are not part of the current response shape. You can fork the API on Parse and revise it to add the missing endpoint if that data is available on the source.
Page content last updated . Spec covers 2 endpoints from dokhoonbahrain.com.
Related APIs in EcommerceSee all →
alsharqiyah.com API
Browse and explore Alsharqiyah Oud's complete catalog of premium Saudi Arabian perfumes and oud products, viewing categories, product listings, and detailed information for each item. Get instant access to product details to compare options and find exactly what you're looking for from this Salla-based store.
sa.almajed4oud.com API
Browse and retrieve detailed information about Al Majed Oud's perfume and oud collection, including product listings, categories, and pricing from their Saudi Arabian store. Get comprehensive product details to compare offerings and explore their full catalog of fragrances.
3atir.co API
Browse and discover authentic and rare perfumes from 3atir's Saudi e-commerce store by searching through their product catalog, exploring best sellers, filtering by categories, and discovering available brands. Get detailed access to product information, curated collections, and brand offerings to find your perfect fragrance.
alhamadbags.com API
Browse and retrieve detailed product information from AlhamadBags, a Saudi Arabian luggage and bags store, including product names, prices, categories, and current discounts. Easily search through available inventory and explore product categories to find the bags and luggage you need.
sabon.com.hk API
Browse Sabon Hong Kong's Eau de Sabon perfume collection and view detailed information about fragrance notes and ingredients for each scent. Quickly find and compare perfumes to discover your ideal fragrance profile.
daraz.com.bd API
Search and browse products on Daraz Bangladesh to find items across any category. Retrieve detailed product information, explore category listings, and surface top-selling items — all from a single API.
baccarat.com API
Search and browse Baccarat's complete product catalog, view items by category, and access detailed product information including specifications and pricing. Find store locations and navigate through Baccarat's product categories to discover luxury crystal and home décor items.
carrefouruae.com API
Access data from carrefouruae.com.