# Dentaltix — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and browse dental supplies and equipment across thousands of products, categories, and brands while accessing detailed information like variants and customer reviews. Find the best deals and discover exactly what you need with powerful product search and filtering capabilities.

**Category:** E-commerce | **Website:** [dentaltix.com/](https://dentaltix.com/) | **Docs:** [parse.bot/marketplace/8263a280-cfcd-4137-b817-a900f710dab1/dentaltix-com-api](https://parse.bot/marketplace/8263a280-cfcd-4137-b817-a900f710dab1/dentaltix-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-dentaltix-com-api-8263a280/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_best_deals

Get products currently on special offer from the best deals page. Returns product summaries with pricing and discount information. Single-page result with no pagination.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dentaltix-com-api-8263a280/get_best_deals \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_brands

Get a list of all available brands on the site. Returns brand names and their URL slugs. The full catalog of brands; no pagination.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dentaltix-com-api-8263a280/get_brands \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_categories

Get a list of categories for a specific section of the store. Returns category names and slugs that can be used with get_category_products. Sections correspond to top-level navigation areas: laboratory, clinic, and equipment.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `type` | string | No | Section type. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dentaltix-com-api-8263a280/get_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"type":"<string>"}'
```

### get_category_products

Get products in a category by its slug. Returns paginated product summaries for the given category. Category slugs are obtainable from the get_categories endpoint. Paginates via integer page counter.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `slug` | string | Yes | Category URL slug (e.g. 'laboratory-burs-and-discs'). Obtainable from get_categories endpoint. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dentaltix-com-api-8263a280/get_category_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","slug":"<string>"}'
```

### get_product_detail

Get full details for a product using its URL slug or full product URL. Returns the product model including all variants (with individual pricing, stock, descriptions, images, categories), customer reviews, and discontinuation status. The slug format is 'brand/product-name' as found in product URLs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Product URL slug in format 'brand/product-name' (e.g. 'medicaline/powder-free-gloves-100u'), or the full product URL. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dentaltix-com-api-8263a280/get_product_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### search_products

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Search keyword (e.g. 'gloves', 'alginate', 'burs'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dentaltix-com-api-8263a280/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>"}'
```
