# Ulta — 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 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.

**Category:** E-commerce | **Website:** [ulta.com/](https://ulta.com/) | **Docs:** [parse.bot/marketplace/5ebdd47c-0ffa-478a-ac36-01c6e922b6ec/ulta-com-api](https://parse.bot/marketplace/5ebdd47c-0ffa-478a-ac36-01c6e922b6ec/ulta-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-ulta-com-api-5ebdd47c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### browse_category

Browse products in a specific Ulta category path. Returns up to 64 products per request with pricing, ratings, and product URLs. Category paths follow the site navigation hierarchy starting with '/shop/'.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_path` | string | Yes | Path to category starting with '/' (e.g. '/shop/skin-care/moisturizers', '/shop/makeup/face/foundation', '/shop/hair-care') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ulta-com-api-5ebdd47c/browse_category \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_path":"<string>"}'
```

### get_product_details

Retrieve full details for a specific product including brand, pricing, rating, description, usage instructions, ingredients, and enhanced content from Syndigo. Requires the product ID obtainable from search_products or browse_category results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | Ulta product ID (e.g. 'pimprod2049087', 'xlsImpprod17501079'). Obtainable from search_products or browse_category results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ulta-com-api-5ebdd47c/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id":"<string>"}'
```

### get_product_reviews

Get customer reviews for a product from PowerReviews. Returns a review rollup (average rating, review count, recommendation ratio) and a list of individual reviews with ratings, comments, and metadata. Each call returns one page; the paging object describes total pages available.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of reviews per page (controls page_size parameter). |
| `product_id` | string | Yes | Ulta product ID (e.g. 'pimprod2049087') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ulta-com-api-5ebdd47c/get_product_reviews \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","product_id":"<string>"}'
```

### search_products

Full-text search over Ulta Beauty's product catalog. Returns up to 64 products per request with pricing, ratings, and product URLs. Single-page result set; query refinement is the primary narrowing tool.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword (e.g. 'mascara', 'moisturizer', 'lipstick') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ulta-com-api-5ebdd47c/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
