Happy Endpoint

Get Product Details

Get Product Details using product ID

GET
/product-details

Authorization

RapidApiKey
X-RapidAPI-Key<token>

In: header

Query Parameters

productId*string
  • IKEA product ID
  • Get product IDs from /product-search-by-keyword or /product-search-by-category endpoints
  • Examples: s29420393, 60561248, 50590915
Length1 <= length <= 50
countryCode*string
  • Two-letter country code
  • Get available country codes from /countries endpoint
  • Examples: us (United States), ca (Canada), gb (United Kingdom), ch (Switzerland), se (Sweden), de (Germany)
Length2 <= length <= 2
languageCode*string
  • Two-letter language code
  • Get available language codes from /countries endpoint
  • Examples: en (English), fr (French), de (German), it (Italian), sv (Swedish)
  • Note: ca supports en or fr, ch supports de, fr, it, or en
Length2 <= length <= 2

Header Parameters

X-RapidAPI-Host*string
Default"ikea-api-pro.p.rapidapi.com"

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/product-details?productId=60561248&countryCode=us&languageCode=en" \  -H "X-RapidAPI-Host: ikea-api-pro.p.rapidapi.com"
{
  "success": true,
  "data": {
    "productInfo": {
      "productName": "STORKLINTA",
      "productID": "60561248",
      "productType": "ART",
      "onlineSellable": true,
      "currency": "USD",
      "productPrice": 249.99,
      "priceExclTax": 249.99,
      "description": "6-drawer dresser, white/anchor/unlock function, 55 1/8x18 7/8x29 1/2 \"",
      "visibleItemNo": "605.612.48",
      "measurement": "55 1/8x18 7/8x29 1/2 \"",
      "productDetailedInfo": [
        "This wide dresser gives you plenty of storage space..."
      ],
      "designerName": "IKEA of Sweden",
      "assemblyInstructionGuide": "http://example.com"
    },
    "gallery": [
      {
        "type": "IMAGE",
        "imageAltDes": "STORKLINTA 6-drawer dresser, white/anchor/unlock function",
        "url": "http://example.com"
      }
    ],
    "variants": [
      {
        "title": "dark brown/oak effect anchor/unlock function",
        "url": "http://example.com",
        "productID": "50561244",
        "imageUrl": "http://example.com",
        "imageAlt": "STORKLINTA 6-drawer dresser, dark brown/oak effect"
      }
    ],
    "packaging": {
      "weightText": "88 lb 12 oz",
      "widthText": "19 ¾ \"",
      "lengthText": "55 ½ \"",
      "heightText": "4 ¼ \"",
      "diameterText": "string"
    },
    "rating": {
      "average": 4.1,
      "reviewCount": 177,
      "reviewInfo": "Average rating of 4.1 out of 5 stars from 177 reviews."
    },
    "highlightedReviews": [
      {
        "name": "Anna K.",
        "ratingValue": 5,
        "title": "Perfect for our bedroom!",
        "text": "This was very easy to put together and it looks great. Very sturdy.",
        "countryName": "United States"
      }
    ]
  }
}
{
  "success": false,
  "message": "Invalid request: Keyword is required and must be a non-empty string",
  "error": "VALIDATION_ERROR"
}
{
  "success": false,
  "message": "The requested resource was not found for the specified country. Please verify your inputs.",
  "error": "RESOURCE_NOT_FOUND"
}
{
  "success": false,
  "message": "Internal server error. Please try again later.",
  "error": "INTERNAL_ERROR"
}
{
  "success": false,
  "message": "IKEA product search service is currently unavailable. Please try again later.",
  "error": "IKEA_API_ERROR"
}