# Get Product ## Get a Product by SKU ### 📌 Description This endpoint retrieves detailed information about a specific product using its unique sku. The response includes product metadata, pricing, inventory tracking status, and fulfilment-related details. ### 🔹 Use Cases - Fetching product details to confirm SKU, pricing, and inventory settings. - Displaying product information in an eCommerce system or inventory dashboard. - Ensuring a product is active and available before placing a fulfilment order. ### 🔹 Parameters - id: The unique id or sku of the product. Endpoint: GET /api/fulfilment/products/{sku} Version: 1.0.0 Security: OAuth2 ## Path parameters: - `sku` (string, required) ## Response 200 fields (application/json): - `availability_status` (integer) - `barcode` (string) - `cost_price` (number) - `country_code_of_origin` (string) - `created_at` (string) - `currency` (string) Enum: "AED", "SAR" - `description` (string) - `dimensions` (object) - `harmonized_system_code` (string) - `id` (string) - `image` (string) - `inventory_tracked` (boolean) - `name` (string) - `partner_product_id` (string) - `platform_price` (number) - `requires_shipping` (boolean) - `retail_price` (number) - `selling_price` (number) - `sku` (string) - `status` (string) Enum: "active", "archived", "draft" - `total_sales` (number) - `track_expiry` (boolean) - `type` (string) - `updated_at` (string) - `vendor` (string) - `weight` (number) - `weight_unit` (string) ## Response default fields (application/json): - `code` (string) Error code Example: "not_found" - `details` (object) Error details - `message` (string) Error message