Ulta Beauty API

Get Ulta Beauty data with one API

Ulta Beauty API returns live Ulta Beauty data as clean JSON for ulta beauty The primary endpoint, search, returns product results including product id, sku id, name, brand and image.

U
/ulta/v1

3 active endpoints. Every call is 2 credits.

  • POST/ulta/v1/search
  • POST/ulta/v1/price
  • POST/ulta/v1/product_detail

What Ulta Beauty endpoints does ReefAPI ship?

3 live read endpoints. Read-only data API: no writes, no account actions, no dashboard access on the target site.

3 endpoints

search

2 cr

Find products on ulta.com (US).

required
optional
query, category, page, max_results, sort, brand, min_rating, filters

price

2 cr

Re-check ONE variant's price and stock, cheaply.

required
product_id, sku_id
optional
url

product_detail

2 cr

Get one Ulta Beauty product in full, by Ulta's product id or by its ulta.com URL.

required
optional
product_id, sku_id, url, reviews, variant_prices

Every parameter, every allowed value →

Ulta Beauty API

2 of 3 endpoints, ready to run

View docs ↗

Find products on ulta.com (US).

2 credits0 required · 2 optional
POST/ulta/v1/search
idle
// Press "Try it" and this pane shows exactly what the
// live site returned this second — including an empty
// result, if that is the truth. No key, no account.

How the Ulta Beauty API works

Ulta Beauty is a normal ReefAPI surface — the same four rules that hold for every other engine on the key.

01
Authenticate
x-api-key header

No OAuth app, no request signing, no per-site account. One key covers all 185 engines.

02
Call
POST /ulta/v1/…

Every route is a POST with a JSON body. Parameters are validated against the published schema before anything is charged.

03
Pay
2 credit per call

Credits, not seats. Failed and blocked calls are never charged, and cache hits cost nothing.

04
Read
{ ok, data, meta, error }

One envelope everywhere. meta carries latency_ms, record_count and the endpoint that answered.

Ulta product id prefixes, sku ids, and which key opens which door

Ulta keys a product one way and a shade another, and integrations break by assuming the product id is numeric. It is not: it always carries a letter prefix, and which prefix depends on how the item entered Ulta's catalogue. The sku is the numeric one. Measured on 2026-08-27 against the Foundation and Mascara categories and Estee Lauder Double Wear.

IdentifierFormatMeasured
product_ida letter prefix followed by digitspimprod2057355; across 20 Foundation rows, 16 were pimprod, 3 xlsImpprod and 1 VP. All are accepted verbatim
sku_id7 digits, one per shade or size2651970 - the variant key, and the only numeric id here
variants[].sku_idthe shade setDouble Wear returned 57 shades as a contiguous run, 2651970 through 2652026
image URLkeyed by sku, not by productmedia.ulta.com/i/ulta/<sku>; <sku>_sw is the color swatch and <sku>_sm the texture shot
categorythe path out of a ulta.com/shop/ URL/shop/makeup/face/foundation, with category.result_count 229
meta.search_modewhich route answered"category" when you browse one; "keyword_to_category" for a keyword - 'mascara' resolved to /shop/makeup/eyes/mascara with 391 results
review_count vs reviews.total_availablehow many reviews you can actually pull9,991 on the record but total_available 550, because 9,441 of them are syndicated from the brand
reviews.rating_histogramkeys "1" through "5", summing to the rating count798 + 216 + 561 + 2115 + 6301 = 9,991

The slug in an Ulta product URL is decorative. /p/anything-pimprod2057355 resolves the same product, and the ?sku= suffix only decides which shade is treated as selected.

What people build with Ulta Beauty

The jobs this data is most often used for.

3

endpoints

2

credits per call

01

Pricing and assortment teams use Ulta Beauty to find products on ulta.com (US).

02

Brand-protection teams use Ulta Beauty to get re-check ONE variant's price and stock, cheaply.

03

Retail analysts use Ulta Beauty to get one Ulta Beauty product in full, by Ulta's product id or by its ulta.com URL.

What Ulta Beauty data costs

The cheapest call here is 2 credits, so $15/mo (Pro) buys 5,000 of them — $1.50 per 1,000 credits. Credits roll over and never expire, and failed or blocked calls are not charged.

Full pricing →
$0.67–$1.50 / 1,000 credits
  • 1,000 free credits on signup, no card
  • One key, all 185 APIs, one credit pool
  • Failed and blocked calls are never charged
  • Credits roll over and never expire

Call it in two lines

Sign up, get 1,000 credits and one key that works on every engine. Then this is the whole protocol.

curl
curl -X POST https://api.reefapi.com/ulta/v1/search \
  -H "x-api-key: $REEF_KEY" \
  -H "content-type: application/json" \
  -d '{"category":"/shop/makeup/face/foundation","max_results":20}'
python
import requests

r = requests.post(
    "https://api.reefapi.com/ulta/v1/search",
    headers={"x-api-key": REEF_KEY},
    json={
  "category": "/shop/makeup/face/foundation",
  "max_results": 20
},
)
print(r.json()["data"])
FAQ

Have a question? We got answers.

The questions people actually ask before wiring up Ulta Beauty.

Get a free key →
What do the ulta product id prefixes mean, and are they interchangeable?

They record how the item entered Ulta's catalogue, and you never construct them, you read them off search. A single browse of the Foundation category returned 16 ids prefixed pimprod, 3 prefixed xlsImpprod and 1 prefixed VP. All prefixes are passed through verbatim and all resolve on product_detail, so the practical rule is to treat product_id as an opaque string and never as a number.

Why do most Ulta variants come back with a null price?

Because an ulta.com product page prices only the shade it has selected; the other swatches genuinely carry no price, so each additional variant price is a separate small request. With variant_prices set to none, a measured 57-shade foundation returned exactly one priced variant and 56 nulls, and price_note in the response said so. Every variant carries price_measured so you can tell a real null from an unfetched one, and no price is ever copied down from the product.

Why can I only retrieve 550 reviews out of 9,991?

Because 9,441 of them are syndicated - written on the brand's own site and shown on Ulta under license - and only the 550 native ones can be paged. The response splits this out as native_review_count and syndicated_review_count, with total_available set to the number you can actually reach. The star average and the full 1-to-5 histogram still cover all 9,991.

What happens if I ask for a sku that does not exist on the product?

NOT_FOUND, with a message explaining what happened. A measured call for sku 9999999 on pimprod2057355 was refused because Ulta answered about sku 2651970, the product's default variant, instead of admitting the sku was unknown. That substitution is detected and rejected rather than passed on, which would otherwise hand you a plausible price for the wrong shade.

How does an Ulta keyword search turn into a category?

The keyword goes through Ulta's own type-ahead and whichever category Ulta suggests is then browsed, which is exactly what a shopper gets from the search box. meta.search_mode reports keyword_to_category when that happened, and data.category names the path it landed on. Searching 'mascara' resolved to /shop/makeup/eyes/mascara with 391 results, and suggestions[] returned Ulta's own matches, mixing type "category" rows with type "product" rows that already carry a product_id and sku_id.

When should I use the price action instead of product_detail?

When you already hold the product_id and sku_id and only want to know what that one variant costs today. It returns product_id, sku_id, variant_label, current_price, regular_price, on_sale and in_stock and nothing else - a measured call on sku 2651975 came back 52.0 and 52.0 with the label "1N2 Ecru (light with neutral rosy undertones)". product_detail on the same product moves over a megabyte.

Are Ulta's category filters real, and where do I get the valid values?

They come back as live data in facets.filters, per category, with a product count on every value. The Foundation category published 11 facet groups including Form with 8 values, Finish with 3, Coverage with 4, Skin Type with 5, SPF with 6, Preferences with 26 and Brand with 78. Take the value verbatim from there rather than guessing, because the vocabulary differs by category - Shampoo has no Coverage group at all.

What is the Ulta Beauty API?

Ulta Beauty API is a ReefAPI endpoint group for ulta beauty It returns live JSON through POST requests under /ulta/v1.

Is the Ulta Beauty API free to try?

Yes. ReefAPI starts with 1,000 free credits, no card required. Ulta Beauty calls use the same shared credit balance as every other ReefAPI engine.

Do I need an Ulta Beauty login or account?

No login to Ulta Beauty is needed for the API response. You call ReefAPI with your x-api-key header, and the playground can run live examples before you create a production key.

How fresh is the Ulta Beauty data?

The page example is captured from a live search call, and production requests fetch live data through ReefAPI rather than a static sample.

How many credits does the Ulta Beauty API use?

Ulta Beauty actions currently cost 2 credits per successful call. Failed or blocked calls are free, and all APIs draw from one credit pool.

Can I call Ulta Beauty from an AI assistant or MCP client?

Yes. Connect ReefAPI once through MCP and your assistant can call ulta actions with the same key, credit pool and JSON envelope used by normal REST requests.

Is the Ulta Beauty API an Ulta Beauty scraper?

It is the managed alternative to a DIY Ulta Beauty scraper. Instead of building and maintaining your own scraper — proxies, headless browsers, captcha and constant breakage — you call one ReefAPI endpoint and get the same ulta beauty back as clean JSON.

15 More APIs APIs on the same key

One key, one credit pool, one response envelope. If you are pulling Ulta Beauty, you are one call away from the rest of the category — no second contract, no second integration.

Try it on your own data before you pay anything

The call above is the real endpoint, not a recording. A free key gives you 1,000 credits, the other 184 APIs, and the same envelope everywhere.

Endpoints, parameters and credit costs on this page are read from the live catalog and cannot drift from what the API accepts.