# Get a product

## Get by SKU

<mark style="color:blue;">`GET`</mark> `https://{workspace}.myeshopbox.com/product-engine/api/v1/products/{sku}`

This endpoint retrieves an existing product by SKU.

#### Path Parameters

| Name | Type   | Description                                                               |
| ---- | ------ | ------------------------------------------------------------------------- |
| sku  | string | Identify characteristics of each product such as manufacture, brand, etc. |

#### Headers

| Name           | Type   | Description                                  |
| -------------- | ------ | -------------------------------------------- |
| Authentication | string | The Bearer token to grant access to the API. |

{% tabs %}
{% tab title="200 Get the product corresponding to the sku " %}

```
{
    "type": "VIRTUAL_COMBO",
    "sku": "73682939-172882-32",
    "groupCode": "73682939-172882",
    "vertical": "APL",
    "brand": "Kapas Kraft",
    "description": "Rust Regular Fit Bundi",
    "specification": [
        "Fragile",
        "Dangerous",
        "Liquid"
    ],
    "additionalNames": {
        "ean": "89027189271829",
        "upc": "87162143127",
        "gtin": "8276174829301",
        "others": [
            "57182_Brown_32"
        ]
    },
    "imageUrl": "https://cdn.filestackcontent.com/hdYluVCqSADCASjjjcuaeC",
    "components": [
        {
            "sku": "73682939-1728878-30",
            "qty": 3
        }
    ],
    "mrp": 1499.0,
    "unitPrice": 799.0,
    "hsnCode": "6101112",
    "weight": 167.0,
    "dimensionLength": 5.0,
    "dimensionWidth": 5.0,
    "dimensionHeight": 5.0,
    "dimensionUnit": "cm",
    "status": "ACTIVE",
    "createdAt": "2020-03-06T10:33:42.000Z",
    "updatedAt": "2020-03-06T10:40:43.275Z",
    "esin": "STDXE3FMCZA",
    "parentEsin": "STDXE3FMCZA",
    "properties": [
        {
            "label": "season",
            "internalName": "season",
            "value": [
                "winter"
            ]
        },
        {
            "label": "fabric",
            "internalName": "fabric",
            "value": [
                "cotton",
                "silk"
            ]
        }
    ],
    "tax": [
        "5.0",
        "12.0"
    ],
    "taxCode": "ESBGST1",
    "weightUnit": "g",
    "verticalName": "Apparels",
    "availableOn" : [
        "CH1234"
    ]
}
```

{% endtab %}
{% endtabs %}
