Returns detailed information about a specific product.
Path Parameters
The ID of the product to retrieve
Response
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"
}
}