# Sephora Product API (https://www.socialcrawl.dev/platforms/sephora/product) > Returns one Sephora US product: title, brand, description, list price, rating, review count, images, ingredients, size, and in-stock flag. Pass the P-number (P427414) or the full sephora.com/product URL. Optional sku pins a size or colour variant. Optional language is en-US, en-CA, or fr-CA. For written reviews call GET /v1/sephora/reviews with the same product id. For store stock call GET /v1/sephora/availability with the sku. TL;DR: `GET /v1/sephora/product` costs 5 credits per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `product_id` | no | Sephora product id, the P-number at the end of a product URL: sephora.com/product/the-ordinary-deciem-natural-moisturizing-factors-ha-P427414 is product id P427414. Product ids also come back on every row of GET /v1/sephora/search and GET /v1/sephora/category. | | `url` | no | Full Sephora product URL, for example https://www.sephora.com/product/the-ordinary-deciem-natural-moisturizing-factors-ha-P427414. The product id is extracted from the path. | | `sku` | no | Sephora sku id for a size or colour variant, for example 2210581. Comes back on search rows as currentSku.skuId and on product detail as currentSku.skuId. | | `language` | no | Copy locale: en-US (default), en-CA, or fr-CA. (en-US \| en-CA \| fr-CA) | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/sephora/product" \ -H "x-api-key: sc_YOUR_API_KEY" ``` See the full Sephora API: https://www.socialcrawl.dev/platforms/sephora ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing