GET
/
api
/
products
/
{id}
{
  "id": 1,
  "sku": "PROD-001",
  "name": "Example Product",
  "description": "Detailed description",
  "short_description": "Brief overview",
  "price": 99.99,
  "status": "active",
  "product_type": "simple",
  "created_at": "2024-01-01T12:00:00Z",
  "updated_at": "2024-01-01T12:00:00Z",
  "categories": [
    {
      "id": 1,
      "name": "Electronics"
    }
  ],
  "attributes": {
    "color": "blue",
    "size": "medium"
  }
}
Returns detailed information about a specific product.

Path Parameters

id
integer
required
The ID of the product to retrieve

Response

id
integer
Product ID
sku
string
Product SKU
name
string
Product name
description
string
Full product description
attributes
object
Product attribute values
categories
array
List of categories the product belongs to
{
  "id": 1,
  "sku": "PROD-001",
  "name": "Example Product",
  "description": "Detailed description",
  "short_description": "Brief overview",
  "price": 99.99,
  "status": "active",
  "product_type": "simple",
  "created_at": "2024-01-01T12:00:00Z",
  "updated_at": "2024-01-01T12:00:00Z",
  "categories": [
    {
      "id": 1,
      "name": "Electronics"
    }
  ],
  "attributes": {
    "color": "blue",
    "size": "medium"
  }
}