Dentaltix APIdentaltix.com ↗
Access dental supply product listings, pricing, variants, reviews, categories, and deals from Dentaltix via 6 structured endpoints.
What is the Dentaltix 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.
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'
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 dentaltix-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: Dentaltix SDK — browse dental supplies, search, drill into details."""
from parse_apis.Dentaltix_API import Dentaltix, SectionType, NotFoundError_
client = Dentaltix()
# List laboratory categories
for cat in client.categories.list(section_type=SectionType.LABORATORY, limit=5):
print(cat.name, cat.slug)
# Construct a category by slug and browse its products
category = client.category("laboratory-burs-and-discs")
for product in category.products.list(limit=3):
print(product.name, product.sku, product.stock)
# Search products by keyword and drill into the first result
result = client.product_summaries.search(query="gloves", limit=1).first()
if result:
detail = result.details()
print(detail.name, detail.discontinued)
for variant in detail.products[:2]:
print(variant.sku, variant.name, variant.stock)
# Typed error handling on a missing product
try:
client.products.get(slug="nonexistent/fake-product-xyz")
except NotFoundError_ as exc:
print(f"Not found: {exc.slug}")
# Browse current best deals
for deal in client.product_summaries.list_deals(limit=3):
print(deal.name, deal.brand, deal.price)
print("exercised: categories.list / category.products.list / product_summaries.search / details / products.get / list_deals")
Full-text search over Dentaltix product catalog by keyword. Returns paginated product summaries with pricing, stock, rating info. Paginates via integer page counter. Each result carries a URL that can be passed to get_product_detail for full variant/review data.
| 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": "DTX-A003642",
"url": "/en/alba/powder-free-black-nitrile-gloves-dental-examination",
"name": "Powder Free Black Nitrile Gloves",
"brand": "Santex",
"image": "https://media.dentaltix.com/styles/product_card/public/guantes-nitrilo-negro-santex.jpg",
"price": 3.5,
"stock": 328,
"rating": 4,
"variant": "Box of 100 units. Black - Size: XS"
}
],
"total_pages": 5,
"current_page": 1,
"total_results": 131
},
"status": "success"
}
}About the Dentaltix API
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.
The Dentaltix API is a managed, monitored endpoint for dentaltix.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when dentaltix.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 dentaltix.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.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- 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 | 100 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.