Product Details by SKU
The endpoint retrieves product details from the catalog based on the product SKU
GET
{{Base_url}}/rest/V1/products/your-product-sku
The API response is a detailed JSON representation of a product retrieved from the Magento system using the endpoint {{Base_url}}/rest/V1/products/your-product-sku
. It provides extensive information about the product, including attributes, media gallery, custom properties, and other metadata. The response highlights key properties such as the product's name, price, weight, and visibility, while also including additional details like custom attributes, media files, and extension attributes. This structure is crucial for understanding the product's configuration in Magento and facilitates updates or integrations with external systems.
Responses
Top-Level Attributes
id
: The unique identifier for the product in the Magento database.Example:
14535
sku
: The Stock Keeping Unit, a unique string to identify the product.Example:
"your-product-sku"
name
: The product's name.Example:
"Your Product Name"
attribute_set_id
: The ID of the attribute set to which the product belongs.Example:
4
price
: The price of the product.Example:
99.99
status
: The product's status (1 for enabled, 0 for disabled).Example:
1
visibility
: Determines where the product is visible (e.g., catalog, search).Example:
4
(Visible in catalog and search)
type_id
: The type of product (e.g., simple, configurable, virtual).Example:
"simple"
created_at
: Timestamp when the product was created.Example:
"2024-12-12 11:03:46"
updated_at
: Timestamp when the product was last updated.Example:
"2025-01-07 06:54:07"
weight
: The weight of the product.Example:
1
extension_attributes
website_ids
: An array of website IDs where the product is available.Example:
[1]
product_links
An array representing linked products (e.g., related or upsell products). In this response, it's empty.
options
Customizable options for the product. This is empty in the response.
media_gallery_entries
A list of media files (images) associated with the product.
Each entry contains:
id
: Unique ID for the media file.Example:
212271
media_type
: Type of media (e.g., image).Example:
"image"
label
: Label for the media.Example:
"Image Label"
position
: Order position in the gallery.Example:
0
disabled
: Whether the image is disabled.Example:
false
types
: Array of image roles (e.g.,image
,small_image
,thumbnail
).Example:
["image", "small_image", "thumbnail"]
file
: File path in the media storage.Example:
"/r/b/rbj1_4.jpeg"
tier_prices
Pricing tiers for the product (empty in this case).
custom_attributes
A list of additional product-specific attributes.
attribute_code
: Code of the attribute.value
: Value of the attribute.
Examples:
short_description
: A brief description of the product.Value:
"<p>html <b>short description here</b></p>"
image
: Main image for the product.Value:
"/r/b/rbj1_4.jpeg"
url_key
: SEO-friendly URL for the product.Value:
"your-product-name"
meta_title
: SEO meta title.Value:
"Product Meta Title"
meta_keyword
: SEO meta keywords.Value:
"product, keywords, magento"
thumbnail
: Path to the product's thumbnail image.Value:
"/r/b/rbj1_4.jpeg"
Other Important Custom Attributes
swatch_image
: Indicates a swatch image (value is"no_selection"
if not set).tax_class_id
: The tax class applied to the product.Value:
"2"
category_ids
: Array of category IDs to which the product belongs.Example:
[]
(empty in this response)
Last updated