cURL
curl --request GET \ --url https://api.example.com/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" } }
Retrieve a single product by ID via the WISEPIM API. Returns all fields including attributes, categories, pricing, inventory, and quality score data.