Discover/Dentaltix API
live

Dentaltix APIdentaltix.com

Access dental supply product listings, pricing, variants, reviews, categories, and deals from Dentaltix via 6 structured endpoints.

Endpoint health
verified 3d ago
get_categories
get_best_deals
get_brands
search_products
get_product_detail
6/6 passing latest checkself-healing
Endpoints
6
Updated
3d ago

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.

Try it
Page number for pagination.
Search keyword (e.g. 'gloves', 'alginate', 'burs').
api.parse.bot/scraper/6be8ea37-3de8-4096-badb-d5fd7591c1fd/<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/6be8ea37-3de8-4096-badb-d5fd7591c1fd/search_products?page=1&query=gloves' \
  -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 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")
All endpoints · 6 totalmissing one? ·

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.

Input
ParamTypeDescription
pageintegerPage number for pagination.
queryrequiredstringSearch keyword (e.g. 'gloves', 'alginate', 'burs').
Response
{
  "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.

Reliability & maintenanceVerified

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.

Last verified
3d ago
Latest check
6/6 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
  • Price monitoring for dental consumables by querying search_products with specific keywords and tracking price changes over time.
  • Building a dental procurement catalog by iterating get_category_products across all slugs from get_categories.
  • Competitor analysis by pulling all brand entries from get_brands and auditing their product ranges.
  • Deal aggregation for dental buyers by polling get_best_deals for current discount ratio and sales price data.
  • Review aggregation for dental products using the reviews array from get_product_detail, which includes date, rating, and country.
  • Discontinued product detection by checking the discontinued flag in get_product_detail responses during catalog syncs.
  • Variant-level inventory tracking by parsing the products array in get_product_detail for per-SKU stock status.
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 Dentaltix offer an official developer API?+
Dentaltix does not publish a public developer API or documented data access program. This Parse API provides structured access to the product and catalog data available on dentaltix.com.
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?+
The endpoint currently accepts only 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?+
It returns a flat list of category names and slugs scoped to one of three section types: 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`?+
The 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.
Page content last updated . Spec covers 6 endpoints from dentaltix.com.
Related APIs in EcommerceSee all →
darbydental.com API
Search and browse Darby Dental's product catalog by category, manufacturer, or popularity to find supplies with detailed information and current pricing. Discover promotional products and explore the complete range of dental equipment and materials available from all manufacturers in their inventory.
cultbeauty.co.uk API
Browse and search Cult Beauty's product catalog by category or brand, view detailed product information including ingredients and loyalty points, and read customer reviews. Discover new arrivals, sale items, and filter products to find exactly what you're looking for.
tiendamia.com API
Search for products across multiple countries and vendors on Tiendamia, then access detailed product information, best sellers, outlet deals, and weekly promotions. Get real-time pricing and availability data to find the best deals across different markets.
thomann.de API
Search and browse Thomann's music store catalog to find products by category, view detailed specifications and pricing, read customer reviews, and filter results to discover the instruments and gear you're looking for. Access comprehensive product information including descriptions, availability, and ratings all in one place.
theordinary.com API
Browse and search The Ordinary's complete product catalog by category or ingredients. View detailed product information including formulas and key actives, apply filters by product type, concern, or ingredient, and read customer reviews to compare and evaluate products.
drunkelephant.com API
Search and browse Drunk Elephant's full product catalog by category or collection, view detailed product information including ingredients and specifications, and access customer ratings and reviews. Find the perfect skincare and beauty products for your needs with comprehensive product details and authentic customer feedback.
ulta.com API
Search and browse Ulta Beauty's complete product catalog with real-time pricing and inventory information, then dive into detailed product specs including ingredients, usage instructions, and customer reviews. Find exactly what you're looking for across all beauty categories with comprehensive product data at your fingertips.
aliexpress.com API
Search for products across AliExpress and instantly access detailed information including product specs, customer reviews, and pricing to make informed purchasing decisions. Browse through product categories and retrieve complete product data directly from URLs to compare options and find exactly what you're looking for.