Happy Endpoint

product details

Return detailed data of a product, including images, price, product details, and ingredients.

GET
/product-details

Authorization

RapidApiKey
X-RapidAPI-Key<token>

In: header

Query Parameters

productId*string

Product ID

Length1 <= length
skuId?string

SKU ID for a specific product variation (e.g., size or color)

language?string

Language preference

Default"en-US"
Value in"en-US" | "en-CA" | "fr-CA"

Header Parameters

X-RapidAPI-Host*string
Default"real-time-sephora-api.p.rapidapi.com"

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/product-details?productId=P427421" \  -H "X-RapidAPI-Host: real-time-sephora-api.p.rapidapi.com"
{
  "success": true,
  "data": {
    "productId": "P455936",
    "heroImageAltText": "Summer Fridays Lip Butter Balm for Hydration & Shine",
    "productDetails": {
      "productId": "P455936",
      "displayName": "Lip Butter Balm Treatment for Hydration + Nourishing Shine",
      "brand": {
        "brandId": "6247",
        "displayName": "Summer Fridays",
        "description": "When you work this hard but still want soft, healthy-looking skin...",
        "targetUrl": "/brand/summer-fridays"
      },
      "longDescription": "<p><strong>What it is: </strong>A nourishing vegan lip treatment...</p>",
      "shortDescription": "<p><strong>What it is: </strong>A nourishing vegan lip treatment...</p>",
      "suggestedUsage": "<b>Suggested Usage:<br></b>-Use when your lips need extra hydration...",
      "lovesCount": 3859753,
      "rating": 4.3096,
      "reviews": 15909
    },
    "currentSku": {
      "skuId": "2495505",
      "listPrice": "$24.00",
      "variationValue": "Vanilla - sheer clear",
      "targetUrl": "/product/summer-fridays-lip-butter-balm-P455936?skuId=2495505",
      "isOutOfStock": false,
      "skuImages": {
        "image250": "https://www.sephora.com/productimages/sku/s2495505-main-zoom.jpg?imwidth=250",
        "altText": "Summer Fridays Lip Butter Balm... in Vanilla - sheer clear",
        "imageUrl": "https://www.sephora.com/productimages/sku/s2495505-main-zoom.jpg"
      },
      "alternateImages": [
        {
          "image250": "https://www.sephora.com/productimages/sku/s2495505-av-12-zoom.jpg?imwidth=250",
          "altText": "Summer Fridays Lip Butter Balm... in Vanilla - sheer clear Image 2",
          "imageUrl": "https://www.sephora.com/productimages/sku/s2495505-av-12-zoom.jpg"
        }
      ]
    },
    "regularChildSkus": [
      {
        "skuId": "2590560",
        "listPrice": "$24.00",
        "variationValue": "Poppy - sheer citrus coral",
        "targetUrl": "/product/summer-fridays-lip-butter-balm-P455936?skuId=2590560",
        "skuImages": {
          "image250": "https://www.sephora.com/productimages/sku/s2590560-main-zoom.jpg?imwidth=250",
          "altText": "Summer Fridays Lip Butter Balm... in Poppy - sheer citrus coral",
          "imageUrl": "https://www.sephora.com/productimages/sku/s2590560-main-zoom.jpg"
        },
        "alternateImages": []
      }
    ]
  }
}
{
  "success": false,
  "message": "Invalid payload provided. Please ensure: 1) 'Content-Type: application/json' is included in your request headers 2) Request body contains valid JSON data.",
  "error": {
    "issues": [
      {
        "code": "too_small",
        "minimum": 1,
        "type": "array",
        "inclusive": true,
        "exact": false,
        "message": "Array must contain at least 1 element(s)",
        "path": [
          "urls"
        ]
      }
    ],
    "name": "ZodError"
  }
}
{
  "success": false,
  "message": "Internal server error"
}