dentaltix.com APIdentaltix.com ↗
Access dental supply product listings, pricing, variants, reviews, categories, and deals from Dentaltix via 6 structured endpoints.
curl -X GET 'https://api.parse.bot/scraper/6be8ea37-3de8-4096-badb-d5fd7591c1fd/search_products?page=1&query=gloves' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for products by keyword. Returns a list of product summaries with pricing, stock, rating, and pagination info.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| queryrequired | string | Search keyword (e.g. 'gloves', 'alginate', 'burs'). |
{
"type": "object",
"fields": {
"products": "array of product summary objects with sku, name, variant, brand, price, rating, stock, image, url",
"total_pages": "integer total number of pages",
"current_page": "integer current page number",
"total_results": "integer total number of matching products"
},
"sample": {
"data": {
"products": [
{
"sku": "ML33522",
"url": "https://www.dentaltix.com/en/medicaline/powder-free-gloves-100u",
"name": "POWDER-FREE GLOVES (100u.)",
"brand": {
"name": "MEDICALINE"
},
"price": {
"sales": 3.95,
"currency": "EUR",
"discount": 0.3,
"salesTaxed": 4.78,
"recommended": 5.64,
"recommendedTaxed": 6.82
},
"stock": 6724,
"rating": {
"ratingCount": 21,
"ratingValue": 4.28571
},
"packQty": 1,
"variant": "Box of 100 units. White - Size: XS",
"modelSku": "PN00019890",
"stockControl": true,
"variationsCount": 4
}
],
"total_pages": 1,
"current_page": 1,
"total_results": 0
},
"status": "success"
}
}About the dentaltix.com API
The Dentaltix API covers 6 endpoints that expose dental supply product data from dentaltix.com, including search results, full product detail pages, category listings, brand directories, and current deals. The get_product_detail endpoint returns every product variant with SKU, pricing, stock status, images, descriptions, and customer reviews — all in a single call by product slug.
Product Search and Detail
The search_products endpoint accepts a keyword query (e.g. 'gloves', 'alginate', 'burs') and returns paginated product summaries. Each result includes sku, name, variant, brand, price, rating, stock, image, and url. Pagination is handled via the page parameter, and the response includes total_pages, current_page, and total_results so you can walk through large result sets.
For deeper detail, get_product_detail takes a slug in brand/product-name format and returns the full product model: all variant objects with their own SKUs, prices, stock levels, images, and category assignments, plus a reviews array containing customer name, review text, date, star rating, and country. A discontinued boolean flags products no longer carried.
Categories and Brands
get_categories accepts an optional type parameter ('laboratory', 'clinic', or 'equipment') to scope the category list to a section of the store. Each category entry returns a name and slug that can be passed directly to get_category_products, which returns paginated product summaries for that category. get_brands requires no inputs and returns the full brand list as name/slug pairs, useful for building browse or filter interfaces.
Deals
get_best_deals returns products currently on promotion. Each item includes sku, name, a brand object, a price object with sales price, recommended price, discount ratio, and currency, and a rating object with ratingValue and ratingCount. No parameters are needed.
- Price monitoring for dental consumables by querying
search_productswith specific keywords and trackingpricechanges over time. - Building a dental procurement catalog by iterating
get_category_productsacross all slugs fromget_categories. - Competitor analysis by pulling all brand entries from
get_brandsand auditing their product ranges. - Deal aggregation for dental buyers by polling
get_best_dealsfor currentdiscount ratioandsales pricedata. - Review aggregation for dental products using the
reviewsarray fromget_product_detail, which includes date, rating, and country. - Discontinued product detection by checking the
discontinuedflag inget_product_detailresponses during catalog syncs. - Variant-level inventory tracking by parsing the
productsarray inget_product_detailfor per-SKUstockstatus.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does Dentaltix offer an official developer API?+
What does `get_product_detail` return that `search_products` does not?+
search_products returns a summary per product suitable for listing views: SKU, name, variant, brand, price, rating, stock, image, and URL. get_product_detail adds the full reviews array (with text, date, rating, and country per review), all variant objects with images and descriptions, assigned categories, and the discontinued boolean. You need the product slug to call it.Can I filter `get_category_products` by brand or price range?+
slug and page as inputs; brand and price filtering are not exposed. You can fork this API on Parse and revise it to add filter parameters if your use case requires narrower results.Does `get_categories` return a full nested category tree?+
laboratory, clinic, or equipment. Sub-category nesting is not currently part of the response. You can fork this API on Parse and revise it to expose nested hierarchy if the source structure supports it.How far back do product reviews go in `get_product_detail`?+
reviews array returns whatever reviews are currently visible on the product page for the given slug. There is no date-range filter or historical archive endpoint — the data reflects the current state of the page at request time.